mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
31 lines
417 B
TypeScript
31 lines
417 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sun & Moon'
|
|
|
|
const smp: Set = {
|
|
id: "smp",
|
|
|
|
name: {
|
|
en: "SM Black Star Promos",
|
|
fr: "Promo SM",
|
|
es: "SL Cartas de promoción",
|
|
it: "SL Promo",
|
|
de: "SM Promokarten"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "PR-SM",
|
|
|
|
cardCount: {
|
|
official: 236
|
|
},
|
|
|
|
releaseDate: "2017-02-03",
|
|
|
|
abbreviations: {
|
|
official: "SMP",
|
|
fr: "PSM"
|
|
}
|
|
}
|
|
|
|
export default smp
|