1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 02:37:50 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* 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>
2021-09-29 21:43:33 +00:00

92 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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,
],
types: [
"Fire",
],
suffix: "Legend",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Sacred Rainbow",
fr: "Arc-en-ciel sacré",
},
effect: {
en: "All energy attached to Ho-Oh LEGEND are Fire Energy instead of their usual type.",
fr: "Toute les énergies attachées au Ho-Oh LÉGENDAIRE sont de type Fire et non de leur type habituel.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
"Fire",
"Fire",
],
name: {
en: "Bright Wing",
fr: "Ailes lumineuses",
},
effect: {
en: "Discard an Energy attached to Ho-Oh LEGEND.",
fr: "Défaussez-vous dune Énergie attachée au Ho-Oh LÉGENDAIRE.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
stage: "Basic",
description: {
en: "Legends claim this Pokémon flies the worlds skies continuously on its magnificent, seven-colored wings."
},
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
hp: 140
}
export default card