mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 01:07:53 +00:00
27 lines
401 B
TypeScript
27 lines
401 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",
|
|
pt: "Próximos Destinos"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "NXD",
|
|
|
|
cardCount: {
|
|
official: 99
|
|
},
|
|
|
|
releaseDate: "2012-02-08"
|
|
}
|
|
|
|
export default bw4
|