mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
32 lines
475 B
TypeScript
32 lines
475 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sword & Shield'
|
|
|
|
const swsh1: Set = {
|
|
id: "swsh4.5",
|
|
|
|
name: {
|
|
en: "Shining Fates",
|
|
fr: "Déstinées Radieuses",
|
|
es: "Destinos Brillantes",
|
|
it: "Destino Splendente",
|
|
de: "Glänzendes Schicksal",
|
|
pt: "Destinos Brilhantes "
|
|
},
|
|
|
|
tcgOnline: 'SHF',
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 72
|
|
},
|
|
|
|
releaseDate: "2021-02-19",
|
|
|
|
abbreviations: {
|
|
official: "SHF",
|
|
fr: "DRA"
|
|
}
|
|
}
|
|
|
|
export default swsh1
|