1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
cards-database/data/EX/Crystal Guardians.ts
Florian Bouillon f8744ee6dd
Made Variants mandatory
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-02 17:04:19 +02:00

36 lines
440 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../EX'
const ex14: Set = {
id: "ex14",
name: {
en: "Crystal Guardians",
fr: "Crystal Guardians"
},
serie: serie,
tcgOnline: "CG",
cardCount: {
total: 100,
official: 100
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2006-08-30",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex14