mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 13:52:13 +00:00
24 lines
320 B
TypeScript
24 lines
320 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: {
|
|
official: 189
|
|
},
|
|
|
|
releaseDate: "2020-08-14"
|
|
}
|
|
|
|
export default swsh3
|