mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
29 lines
447 B
TypeScript
29 lines
447 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Trainer kits'
|
|
|
|
const set: Set = {
|
|
id: "tk-sm-l",
|
|
|
|
name: {
|
|
en: "SM trainer Kit (Lycanroc)",
|
|
it: "Sole e Luna trainer Kit (Lycanroc)",
|
|
fr: "SM Kit du dresseur (Lougarox)",
|
|
es: "Kit de Entrenador Sol y Luna (Lycanroc)"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 30
|
|
},
|
|
|
|
releaseDate: "2017-04-21",
|
|
|
|
abbreviations: {
|
|
official: "TK10L",
|
|
fr: "LOU"
|
|
}
|
|
}
|
|
|
|
export default set
|