import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Houndour", }, illustrator: "Yukiko Baba", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 228, ], hp: 40, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Corner", }, effect: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Lunge", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card