mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
30 lines
452 B
TypeScript
30 lines
452 B
TypeScript
import Set from '@tcgdex/sdk/interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Wizards Black Star Promos"
|
|
},
|
|
code: "basep",
|
|
expansionCode: "base",
|
|
tcgoCode: "PR",
|
|
|
|
cardCount: {
|
|
total: 53,
|
|
official: 53
|
|
},
|
|
|
|
releaseDate: "1999-07-01",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/univ/base/basep/symbol",
|
|
logo: "https://assets.tcgdex.net/en/base/basep/logo"
|
|
}
|
|
}
|
|
|
|
export default set
|