mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
23 lines
277 B
TypeScript
23 lines
277 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const ex5: Set = {
|
|
id: "ex5",
|
|
|
|
name: {
|
|
en: "Hidden Legends",
|
|
fr: "Hidden Legends"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "HL",
|
|
|
|
cardCount: {
|
|
official: 101
|
|
},
|
|
|
|
releaseDate: "2004-06-01"
|
|
}
|
|
|
|
export default ex5
|