mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
36 lines
466 B
TypeScript
36 lines
466 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"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
total: 195,
|
|
official: 72
|
|
},
|
|
|
|
releaseDate: "2021-02-19",
|
|
|
|
legal: {
|
|
standard: true,
|
|
expanded: true
|
|
},
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default swsh1
|