1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
cards-database/data/Scarlet & Violet/Scarlet & Violet.ts
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
397 B
TypeScript

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