import { Card } from '../../../interfaces' import Set from '../Furious Fists' const card: Card = { name: { en: "Mienfoo", fr: "Kungfouine", }, illustrator: "Shigenori Negishi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 619, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Flop", fr: "Flop", }, damage: 10, }, { cost: [ "Colorless", "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: "Psychic", value: "×2" }, ], retreat: 1, } export default card