mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
300 B
TypeScript
23 lines
300 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Trainer kits'
|
|
|
|
const set: Set = {
|
|
id: "tk-sm-l",
|
|
|
|
name: {
|
|
en: "SM trainer Kit (Lycanroc)",
|
|
fr: "SM Kit du dresseur (Lougarox)"
|
|
,
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 30
|
|
},
|
|
|
|
releaseDate: "2017-04-21"
|
|
}
|
|
|
|
export default set
|