1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
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
396 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../E-Card'
const sp: Set = {
id: "sp",
name: {
en: "Sample",
fr: "Sample"
},
serie: serie,
cardCount: {
total: 10,
official: 10
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2002-08-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default sp