import { Card } from '../../../interfaces' import Set from '../Undaunted' const card: Card = { name: { en: "Houndour", fr: "Malosse", de: "Hunduster" }, 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é", de: "Scharfe Fänge" }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, description: { en: "It uses different kinds of cries for communicating with others of its kind and for pursuing its prey." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card