mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
33 lines
501 B
TypeScript
33 lines
501 B
TypeScript
import Set from '@tcgdex/sdk/interfaces/Set'
|
|
import swsh from '../../expansions/swsh'
|
|
const swsh2: Set = {
|
|
name: {
|
|
en: "Darkness Ablaze"
|
|
},
|
|
|
|
expansion: swsh,
|
|
expansionCode: "swsh",
|
|
|
|
code: "swsh3",
|
|
// tcgoCode
|
|
|
|
cardCount: {
|
|
total: 201,
|
|
official: 189
|
|
},
|
|
|
|
releaseDate: "2020-08-14",
|
|
|
|
legal: {
|
|
standard: true,
|
|
expanded: true
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/univ/swsh/swsh3/symbol",
|
|
logo: "https://assets.tcgdex.net/en/swsh/swsh3/logo"
|
|
}
|
|
}
|
|
|
|
export default swsh2
|