mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
26 lines
352 B
TypeScript
26 lines
352 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",
|
|
es: "NB Promo",
|
|
it: "NB Promo",
|
|
de: "SW Promokarten"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "PR-BLW",
|
|
|
|
cardCount: {
|
|
official: 101
|
|
},
|
|
|
|
releaseDate: "2011-04-26"
|
|
}
|
|
|
|
export default bwp
|