mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
29 lines
470 B
TypeScript
29 lines
470 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Trainer kits'
|
|
|
|
const set: Set = {
|
|
id: "tk-sm-r",
|
|
|
|
name: {
|
|
en: "SM trainer Kit (Alolan Raichu)",
|
|
it: "Sole e Luna trainer Kit (Alolan Raichu)",
|
|
fr: "SM Kit du dresseur (Raichu d'Alola)",
|
|
es: "Kit de Entrenador Sol y Luna (Raichu de Alola)"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 30
|
|
},
|
|
|
|
releaseDate: "2017-04-21",
|
|
|
|
abbreviations: {
|
|
official: "TK10A",
|
|
fr: "RAL"
|
|
}
|
|
}
|
|
|
|
export default set
|