mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
26 lines
331 B
TypeScript
26 lines
331 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Dark Explorers",
|
|
fr: "Explorateurs Obscurs",
|
|
},
|
|
code: "bw5",
|
|
expansionCode: "bw",
|
|
tcgoCode: "DEX",
|
|
|
|
cardCount: {
|
|
total: 111,
|
|
official: 108
|
|
},
|
|
|
|
releaseDate: "2012-05-09",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true,
|
|
}
|
|
}
|
|
|
|
export default set
|