1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
cards-database/data/Black & White/Radiant Collection.ts
Florian Bouillon f8744ee6dd
Made Variants mandatory
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-02 17:04:19 +02:00

35 lines
426 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Black & White'
const rc: Set = {
id: "rc",
name: {
en: "Radiant Collection",
fr: "Radiant Collection"
},
serie: serie,
cardCount: {
total: 25,
official: 25
},
legal: {
expanded: true,
standard: false
},
releaseDate: "2013-11-06",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default rc