mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
30 lines
470 B
TypeScript
30 lines
470 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Scarlet & Violet'
|
|
|
|
const set: Set = {
|
|
id: "sv08.5",
|
|
|
|
name: {
|
|
de: "Prismatische Entwicklungen",
|
|
en: "Prismatic Evolutions",
|
|
es: "Evolucionnes Prismáticas",
|
|
fr: "Évolutions Prismatiques",
|
|
it: "Evoluzioni Prismatiche",
|
|
pt: "Evoluções Prismáticas"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 131
|
|
},
|
|
|
|
releaseDate: "2025-01-17",
|
|
|
|
abbreviations: {
|
|
official: "PRE"
|
|
}
|
|
}
|
|
|
|
export default set
|