import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Houndour", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 228, ], hp: 50, types: [ "Darkness", ], stage: "Basic", 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.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card