mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
30 lines
394 B
TypeScript
30 lines
394 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const ex13: Set = {
|
|
id: "ex13",
|
|
|
|
name: {
|
|
en: "Holon Phantoms",
|
|
fr: "EX Fantômes Holon",
|
|
it: "EX Fantasmi di Holon",
|
|
de: "EX Holon Phantoms"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "HP",
|
|
|
|
cardCount: {
|
|
official: 110
|
|
},
|
|
|
|
releaseDate: "2006-05-03",
|
|
|
|
abbreviations: {
|
|
official: "HP",
|
|
fr: "FAN"
|
|
}
|
|
}
|
|
|
|
export default ex13
|