mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 17:27:52 +00:00
37 lines
472 B
TypeScript
37 lines
472 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sword & Shield'
|
|
|
|
const swsh3: Set = {
|
|
id: "swsh3",
|
|
|
|
name: {
|
|
en: "Darkness Ablaze",
|
|
fr: "Ténèbres Embrasées",
|
|
es: "Oscuridad Incandescente"
|
|
,
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
total: 201,
|
|
official: 189
|
|
},
|
|
|
|
releaseDate: "2020-08-14",
|
|
|
|
legal: {
|
|
standard: true,
|
|
expanded: true
|
|
},
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default swsh3
|