mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
28 lines
352 B
TypeScript
28 lines
352 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Next Destinies",
|
|
fr: "Destinées Futures",
|
|
},
|
|
code: "bw4",
|
|
expansionCode: "bw",
|
|
tcgoCode: "NXD",
|
|
|
|
cardCount: {
|
|
total: 103,
|
|
official: 99
|
|
},
|
|
|
|
api: "4-black-white",
|
|
|
|
releaseDate: "2012-02-08",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true,
|
|
}
|
|
}
|
|
|
|
export default set
|