mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
33 lines
488 B
TypeScript
33 lines
488 B
TypeScript
import Set from '@tcgdex/sdk/interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Fates Collide",
|
|
fr: "Impact des Destins",
|
|
},
|
|
code: "xy10",
|
|
expansionCode: "xy",
|
|
tcgoCode: "FCO",
|
|
|
|
cardCount: {
|
|
total: 125,
|
|
official: 124
|
|
},
|
|
|
|
api: "10-xy",
|
|
|
|
releaseDate: "2016-05-02",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/univ/sets/xy/xy10/symbol",
|
|
logo: "https://assets.tcgdex.net/en/sets/xy/xy10/logo"
|
|
}
|
|
}
|
|
|
|
export default set
|