mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
25 lines
310 B
TypeScript
25 lines
310 B
TypeScript
import Set from '@tcgdex/sdk/interfaces/Set'
|
|
import swsh from '../../expansions/swsh'
|
|
|
|
const set: Set = {
|
|
name: "Promos",
|
|
|
|
expansion: swsh,
|
|
|
|
code: "swshp",
|
|
|
|
cardCount: {
|
|
total: 107,
|
|
official: 107
|
|
},
|
|
|
|
releaseDate: "2019-11-15",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false
|
|
}
|
|
}
|
|
|
|
export default set
|