mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
22 lines
291 B
TypeScript
22 lines
291 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Gym'
|
|
|
|
const gym2: Set = {
|
|
id: "gym2",
|
|
name: {
|
|
en: "Gym Challenge",
|
|
fr: "Gym Challenge"
|
|
},
|
|
serie: serie,
|
|
|
|
tcgOnline: "G2",
|
|
|
|
cardCount: {
|
|
total: 132,
|
|
official: 132
|
|
},
|
|
|
|
releaseDate: "2000-10-16"
|
|
}
|
|
|
|
export default gym2 |