mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
26 lines
373 B
TypeScript
26 lines
373 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bw4: Set = {
|
|
id: "bw4",
|
|
|
|
name: {
|
|
en: "Next Destinies",
|
|
fr: "Destinées Futures",
|
|
es: "Próximos Destinos",
|
|
it: "Destini Futuri",
|
|
de: "Kommende Schicksale"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "NXD",
|
|
|
|
cardCount: {
|
|
official: 99
|
|
},
|
|
|
|
releaseDate: "2012-02-08"
|
|
}
|
|
|
|
export default bw4
|