mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-09 02:37:50 +00:00
* Update Signed-off-by: Avior <github@avior.me> * Update datas Signed-off-by: Avior <github@avior.me> * Finished fix Signed-off-by: Avior <github@avior.me> * Updated some more Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more updates Signed-off-by: Avior <florian.bouillon@delta-wings.net>
42 lines
614 B
TypeScript
42 lines
614 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: "Ultra Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
250,
|
||
],
|
||
|
||
hp: 140,
|
||
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
suffix: "Legend",
|
||
stage: "Basic",
|
||
retreat: 0,
|
||
|
||
description: {
|
||
en: "Legends claim this Pokémon flies the world’s skies continuously on its magnificent, seven-colored wings."
|
||
},
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|