mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 07:09:54 +00:00
36 lines
448 B
TypeScript
36 lines
448 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Trainer kits'
|
|
|
|
const set: Set = {
|
|
id: "tk-ex-n",
|
|
|
|
name: {
|
|
en: "EX trainer Kit 2 (Ninun)",
|
|
fr: "EX Kit dresseur (Négapi)"
|
|
,
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
total: 12,
|
|
official: 12
|
|
},
|
|
|
|
legal: {
|
|
expanded: false,
|
|
standard: false
|
|
},
|
|
|
|
releaseDate: "2006-03-01",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default set
|