1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
cards-database/data/Legendary Collection/Legendary Collection.ts
Florian Bouillon 2f5f52b51c
refactor: Add Sets/Series translations (#172)
* refactor: Add set/Series translations

Signed-off-by: Avior <github@avior.me>

* refactor: Done Trainer kits

Signed-off-by: Avior <github@avior.me>
2021-11-16 12:44:58 +01:00

26 lines
432 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Legendary Collection'
const lc: Set = {
id: "lc",
name: {
en: "Legendary Collection",
it: "Richiamo delle Leggende",
de: "Ruf der Legenden",
es: "Llamada de las Leyendas", // NOTE: only went out in the TCGO
fr: "L'Appel des Légendes"
},
serie: serie,
tcgOnline: "LC",
cardCount: {
official: 110
},
releaseDate: "2002-05-24"
}
export default lc