mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
26 lines
292 B
TypeScript
26 lines
292 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: "XY",
|
|
|
|
code: "xy1",
|
|
expansionCode: "xy",
|
|
tcgoCode: "XY",
|
|
|
|
cardCount: {
|
|
total: 146,
|
|
official: 146
|
|
},
|
|
|
|
api: "1-xy",
|
|
|
|
releaseDate: "2014-02-05",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true,
|
|
}
|
|
}
|
|
|
|
export default set
|