mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
32 lines
435 B
TypeScript
32 lines
435 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bw1: Set = {
|
|
id: "bw1",
|
|
|
|
name: {
|
|
en: "Black & White",
|
|
fr: "Noir & Blanc",
|
|
es: "Negro y Blanco",
|
|
it: "Nero e Bianco",
|
|
de: "Schwarz & Weiß",
|
|
pt: "Black & White"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "BLW",
|
|
|
|
cardCount: {
|
|
official: 114
|
|
},
|
|
|
|
releaseDate: "2011-04-25",
|
|
|
|
abbreviations: {
|
|
official: "BLW",
|
|
fr: "N&B"
|
|
}
|
|
}
|
|
|
|
export default bw1
|