mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
28 lines
356 B
TypeScript
28 lines
356 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Yello A Alternate",
|
|
fr: "carte alternative A Jaune",
|
|
},
|
|
code: "xya",
|
|
expansionCode: "xy",
|
|
// tcgoCode: "XY",
|
|
|
|
cardCount: {
|
|
total: 6,
|
|
official: 6
|
|
},
|
|
|
|
api: "a-xy",
|
|
|
|
// releaseDate: "2014-02-05",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
}
|
|
}
|
|
|
|
export default set
|