import { Card } from '../../../interfaces' import Set from '../Boundaries Crossed' const card: Card = { name: { en: "Mienfoo", fr: "Kungfouine", es: "Mienfoo", it: "Mienfoo", pt: "Mienfoo", de: "Lin-Fu" }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 619, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Steady Punch", fr: "Poing Énergétique", }, effect: { en: "Flip a coin. If heads, this attack does 10 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card