mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
33 lines
487 B
TypeScript
33 lines
487 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,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/sets/bw/bw4/symbol.png",
|
|
logo: "https://assets.tcgdex.net/sets/bw/bw4/logo.png"
|
|
}
|
|
}
|
|
|
|
export default set
|