import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Ho-Oh", fr: "Ho-Oh", }, illustrator: "Aya Kusube", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 250, ], hp: 130, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Rainbow Burn", fr: "Brûlure Arc-en-Ciel", }, effect: { en: "This attack does 30 more damage for each type of basic Energy attached to this Pokémon.", fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque type d’Énergie de base attaché à ce Pokémon.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 2, } export default card