mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
32 lines
468 B
TypeScript
32 lines
468 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sun & Moon'
|
|
|
|
const sm35: Set = {
|
|
id: "sm3.5",
|
|
|
|
name: {
|
|
en: "Shining Legends",
|
|
fr: "Légendes Brillantes",
|
|
es: "Leyendas Luminosas",
|
|
it: "Leggende Iridescenti",
|
|
de: "Schimmernde Legenden",
|
|
pt: "Lendas Luminescentes"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "SLG",
|
|
|
|
cardCount: {
|
|
official: 73
|
|
},
|
|
|
|
releaseDate: "2017-10-06",
|
|
|
|
abbreviations: {
|
|
official: "SLG",
|
|
fr: "LBR"
|
|
}
|
|
}
|
|
|
|
export default sm35
|