import { Card } from '../../../interfaces' import Set from '../Team Magma vs Team Aqua' const card: Card = { name: { en: "Team Magma's Houndour", }, illustrator: "Atsuko Ujiie", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 228, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Kick Away", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon, if any.", }, damage: 10, }, { cost: [ "Fire", "Colorless", ], name: { en: "Steady Firebreathing", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card