mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-14 20:49:54 +00:00
25 lines
335 B
TypeScript
25 lines
335 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"
|
|
}
|
|
|
|
export default rc
|