import { Card } from '../../../interfaces' import Set from '../Phantom Forces' const card: Card = { name: { en: "Poochyena", fr: "Medhyèna", }, illustrator: "5ban Graphics", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 261, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Bite", fr: "Morsure", }, damage: 10, }, { cost: [ "Darkness", "Colorless", ], name: { en: "Lunge", fr: "Coup Rapide", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card