mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
35 lines
541 B
TypeScript
35 lines
541 B
TypeScript
import Set from '@tcgdex/sdk/interfaces/Set'
|
|
import tk from '../../expansions/tk'
|
|
|
|
import path from 'path'
|
|
// Card in maxi sizes
|
|
|
|
const code = path.basename(__filename).split(".")[0]
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: `EX trainer Kit (Latias)`,
|
|
fr: `EX Kit dresseur (Latias)`,
|
|
},
|
|
expansion: tk,
|
|
code: code,
|
|
|
|
cardCount: {
|
|
total: 10,
|
|
official: 10
|
|
},
|
|
|
|
releaseDate: `2004-07-01`,
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
},
|
|
|
|
images: {
|
|
symbol: `https://assets.tcgdex.net/univ//tk/${code}/symbol`
|
|
},
|
|
}
|
|
|
|
export default set
|