mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
32 lines
509 B
TypeScript
32 lines
509 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Call of Legends'
|
|
|
|
const col1: Set = {
|
|
id: "col1",
|
|
|
|
name: {
|
|
en: "Call of Legends",
|
|
fr: "L'appel des Légendes",
|
|
it: "Richiamo delle Leggende",
|
|
de: "Ruf der Legenden",
|
|
pt: "Chamado das Lendas",
|
|
es: "Llamada de las Leyendas" // NOTE: only went out in the TCGO
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "CL",
|
|
|
|
cardCount: {
|
|
official: 95
|
|
},
|
|
|
|
releaseDate: "2011-02-09",
|
|
|
|
abbreviations: {
|
|
official: "COL",
|
|
fr: "LDL"
|
|
}
|
|
}
|
|
|
|
export default col1
|