mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
32 lines
484 B
TypeScript
32 lines
484 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bw5: Set = {
|
|
id: "bw5",
|
|
|
|
name: {
|
|
en: "Dark Explorers",
|
|
fr: "Explorateurs Obscurs",
|
|
it: "Esploratori delle Tenebre",
|
|
de: "Erfoscher der Finsternis",
|
|
es: "Oscuros Exploradores",
|
|
pt: "Exploradores da Escuridão"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "DEX",
|
|
|
|
cardCount: {
|
|
official: 108
|
|
},
|
|
|
|
releaseDate: "2012-05-09",
|
|
|
|
abbreviations: {
|
|
official: "DEX",
|
|
fr: "EOB"
|
|
}
|
|
}
|
|
|
|
export default bw5
|