mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* refactor: Add set/Series translations Signed-off-by: Avior <github@avior.me> * refactor: Done Trainer kits Signed-off-by: Avior <github@avior.me>
22 lines
253 B
TypeScript
22 lines
253 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Gym'
|
|
|
|
const gym1: Set = {
|
|
id: "gym1",
|
|
|
|
name: {
|
|
en: "Gym Heroes"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "G1",
|
|
|
|
cardCount: {
|
|
official: 132
|
|
},
|
|
|
|
releaseDate: "2000-08-14"
|
|
}
|
|
|
|
export default gym1
|