mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
* refactor: Add set/Series translations Signed-off-by: Avior <github@avior.me> * refactor: Done Trainer kits Signed-off-by: Avior <github@avior.me>
24 lines
315 B
TypeScript
24 lines
315 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const ex5: Set = {
|
|
id: "ex5",
|
|
|
|
name: {
|
|
en: "Hidden Legends",
|
|
fr: "EX Légendes Oubliées",
|
|
it: "EX Leggende Nascoste"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "HL",
|
|
|
|
cardCount: {
|
|
official: 101
|
|
},
|
|
|
|
releaseDate: "2004-06-01"
|
|
}
|
|
|
|
export default ex5
|