mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
31 lines
459 B
TypeScript
31 lines
459 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",
|
|
|
|
abbreviations: {
|
|
official: "PAL",
|
|
fr: "EAP"
|
|
}
|
|
}
|
|
|
|
export default set
|