mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
31 lines
385 B
TypeScript
31 lines
385 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sword & Shield'
|
|
|
|
const swshp: Set = {
|
|
id: "swshp",
|
|
|
|
name: {
|
|
en: "SWSH Black Star Promos",
|
|
fr: "Promo SWSH"
|
|
,
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
total: 107,
|
|
official: 107
|
|
},
|
|
|
|
releaseDate: "2019-11-15",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default swshp
|