mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
32 lines
459 B
TypeScript
32 lines
459 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bw2: Set = {
|
|
id: "bw2",
|
|
|
|
name: {
|
|
en: "Emerging Powers",
|
|
fr: "Pouvoirs Émergents",
|
|
es: "Fuerzas Emergentes",
|
|
it: "Nuove Forze",
|
|
de: "Aufstreben der Mächtigen",
|
|
pt: "Poderes Emergentes"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "EPO",
|
|
|
|
cardCount: {
|
|
official: 98
|
|
},
|
|
|
|
releaseDate: "2011-08-31",
|
|
|
|
abbreviations: {
|
|
official: "EP",
|
|
fr: "PEM"
|
|
}
|
|
}
|
|
|
|
export default bw2
|