1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
cards-database/data/Sword & Shield/Chilling Reign.ts
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
475 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Sword & Shield'
const set: Set = {
id: "swsh6",
name: {
en: "Chilling Reign",
fr: "Règne de Glace",
es: "Reinado Escalofriante"
,
},
serie: serie,
cardCount: { // NOT confirmed
total: 190,
official: 190
},
releaseDate: "2021-06-18",
legal: {
standard: true,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default set