1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 98d25c6769
It should compile for Spanish :D
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 22:59:48 +02:00

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