mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
32 lines
462 B
TypeScript
32 lines
462 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sword & Shield'
|
|
|
|
const swsh6: Set = {
|
|
id: "swsh7",
|
|
|
|
name: {
|
|
en: "Evolving Skies",
|
|
fr: "Évolution Céleste",
|
|
es: "Cielos Evolutivos",
|
|
de: "Drachenwandel",
|
|
it: "Evoluzioni Eteree",
|
|
pt: "Céus em Evolução",
|
|
},
|
|
|
|
tcgOnline: 'EVS',
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 203
|
|
},
|
|
|
|
releaseDate: "2021-08-27",
|
|
|
|
abbreviations: {
|
|
official: "EVS",
|
|
fr: "EVC"
|
|
}
|
|
}
|
|
|
|
export default swsh6
|