1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
cards-database/data/Legendary Collection/Legendary 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
429 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Legendary Collection'
const lc: Set = {
id: "lc",
name: {
en: "Legendary Collection",
},
serie: serie,
tcgOnline: "LC",
cardCount: {
total: 110,
official: 110
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2002-05-24",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default lc