mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
28 lines
346 B
TypeScript
28 lines
346 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Black & White",
|
|
fr: "Noir & Blanc",
|
|
},
|
|
code: "bw1",
|
|
expansionCode: "bw",
|
|
tcgoCode: "BLW",
|
|
|
|
cardCount: {
|
|
total: 115,
|
|
official: 114
|
|
},
|
|
|
|
api: "1-black-white",
|
|
|
|
releaseDate: "2011-04-25",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true,
|
|
}
|
|
}
|
|
|
|
export default set
|