import { Card } from '../../../interfaces' import Set from '../Undaunted' const card: Card = { name: { en: "Houndour", fr: "Malosse", }, illustrator: "kawayoo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 228, ], hp: 50, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Darkness", "Colorless", ], name: { en: "Sharp Fang", fr: "Croc aiguisé", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card