1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

26 lines
392 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Scarlet & Violet'
const set: Set = {
id: "sv04",
name: {
de: "Obsidian Flammen",
en: "Paradox Rift",
es: "Escarlata y Púrpura",
fr: "Écarlate et Violet",
it: "Scarlatto e Violetto",
pt: "Escarlate e Violeta"
},
serie: serie,
cardCount: {
official: 182
},
releaseDate: "2023-11-03"
}
export default set