import { Card } from '../../../interfaces' import Set from '../Battle Styles' const card: Card = { set: Set, name: { en: "Houndour", fr: "Malosse" }, illustrator: "Sanosuke Sakuma", rarity: "Common", category: "Pokemon", hp: 60, types: ["Darkness"], attacks: [{ name: { en: "Bite", fr: "Morsure" }, damage: 20, cost: ["Colorless"] }], weaknesses: [{ type: "Grass", value: "×2" }], retreat: 1, regulationMark: "E" } export default card