1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 07:09:54 +00:00
cards-database/data/Trainer kits/DP trainer Kit (Lucario).ts
Florian Bouillon f8744ee6dd
Made Variants mandatory
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-02 17:04:19 +02:00

36 lines
448 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Trainer kits'
const set: Set = {
id: "tk-dp-l",
name: {
en: "DP trainer Kit (Lucario)",
fr: "DP Kit dresseur (Lucario)"
,
},
serie: serie,
cardCount: {
total: 12,
official: 12
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2007-09-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default set