1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +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
405 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Scarlet & Violet'
const set: Set = {
id: "sv02",
name: {
de: "Entwicklungen in Paldea",
en: "Paldea Evolved",
es: "Evoluciones en Paldea",
fr: "Évolutions à Paldea",
it: "Evoluzioni a Paldea",
pt: "Evoluções em Paldea"
},
serie: serie,
cardCount: {
official: 193
},
releaseDate: "2023-06-09"
}
export default set