mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 01:19:54 +00:00
27 lines
345 B
TypeScript
27 lines
345 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bwp: Set = {
|
|
id: "bwp",
|
|
name: {
|
|
en: "Promo",
|
|
fr: "Cartes Promo"
|
|
},
|
|
serie: serie,
|
|
|
|
tcgOnline: "PR-BLW",
|
|
|
|
cardCount: {
|
|
total: 101,
|
|
official: 101
|
|
},
|
|
|
|
releaseDate: "2011-04-26",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true
|
|
},
|
|
}
|
|
|
|
export default bwp |