mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
23 lines
286 B
TypeScript
23 lines
286 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bw1: Set = {
|
|
id: "bw1",
|
|
|
|
name: {
|
|
en: "Black & White",
|
|
fr: "Noir & Blanc"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "BLW",
|
|
|
|
cardCount: {
|
|
official: 114
|
|
},
|
|
|
|
releaseDate: "2011-04-25"
|
|
}
|
|
|
|
export default bw1
|