1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 20:39:55 +00:00

35 lines
359 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Ho-Oh LEGEND",
fr: "Ho-Oh LÉGENDAIRE",
},
illustrator: "Shinji Higuchi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
250,
],
hp: 140,
types: [
"Fire",
],
suffix: "Legend",
}
export default card