mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
29 lines
450 B
TypeScript
29 lines
450 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Trainer kits'
|
|
|
|
const set: Set = {
|
|
id: "tk-dp-l",
|
|
|
|
name: {
|
|
en: "DP trainer Kit (Lucario)",
|
|
it: "Diamond & Pearl trainer Kit (Lucario)",
|
|
fr: "DP Kit dresseur (Lucario)",
|
|
es: "Kit de Entrenador Diamante & Perla (Lucario)",
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 12
|
|
},
|
|
|
|
releaseDate: "2007-09-01",
|
|
|
|
abbreviations: {
|
|
official: "TK3L",
|
|
fr: "LUC"
|
|
}
|
|
}
|
|
|
|
export default set
|