import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Houndour", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 228, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", ], name: { en: "Smog", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card