mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
36 lines
445 B
TypeScript
36 lines
445 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bwp: Set = {
|
|
id: "bwp",
|
|
|
|
name: {
|
|
en: "BW Black Star Promos",
|
|
fr: "Promo BW"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "PR-BLW",
|
|
|
|
cardCount: {
|
|
total: 101,
|
|
official: 101
|
|
},
|
|
|
|
releaseDate: "2011-04-26",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true
|
|
},
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default bwp
|