1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +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

37 lines
426 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Platinum'
const pl1: Set = {
id: "pl1",
name: {
en: "Platinum",
fr: "Platine"
,
},
serie: serie,
tcgOnline: "PL",
cardCount: {
total: 133,
official: 127
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2009-02-11",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pl1