mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
31 lines
409 B
TypeScript
31 lines
409 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../XY'
|
|
|
|
const xyp: Set = {
|
|
id: "xyp",
|
|
|
|
name: {
|
|
en: "XY Black Star Promos",
|
|
fr: "Promo XY",
|
|
es: "XY Cartas de promoción",
|
|
it: "XY Promo",
|
|
de: "XY Promokarten"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "PR-XY",
|
|
|
|
cardCount: {
|
|
official: 211
|
|
},
|
|
|
|
releaseDate: "2013-10-12",
|
|
|
|
abbreviations: {
|
|
official: 'XYP',
|
|
fr: "PXY"
|
|
}
|
|
}
|
|
|
|
export default xyp
|