import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Houndoom", }, illustrator: "Atsuko Nishida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 229, ], hp: 70, types: [ "Darkness", ], evolveFrom: { en: "Houndour", }, stage: "Stage1", attacks: [ { cost: [ "Darkness", "Colorless", ], name: { en: "Feint Attack", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.", }, }, { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Flamethrower", }, effect: { en: "Discard a Fire Energy card attached to Houndoom.", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card