mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
26 lines
397 B
TypeScript
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
|