mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
31 lines
450 B
TypeScript
31 lines
450 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",
|
|
|
|
abbreviations: {
|
|
official: "SV",
|
|
fr: "E&V"
|
|
}
|
|
}
|
|
|
|
export default set
|