import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Houndoom", }, illustrator: "Hajime Kusajima", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 229, ], hp: 70, types: [ "Darkness", ], evolveFrom: { en: "Houndour", }, stage: "Stage1", attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Fireworks", }, effect: { en: "Flip a coin. If tails, discard 1 Energy card attached to Houndoom.", }, damage: 30, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Dark Impact", }, effect: { en: "The Defending Pokémon can't use any Poké-Powers until the end of your opponent's next turn.", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card