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: [ "Fire", ], name: { en: "Combustion", }, damage: 10, }, { cost: [ "Fire", "Colorless", ], name: { en: "Super Singe", }, effect: { en: "The Defending Pokémon is now Burned.", }, damage: 10, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card