import { Card } from '../../../interfaces' import Set from '../Noble Victories' const card: Card = { name: { en: "Mienfoo", fr: "Kungfouine", es: "Mienfoo", it: "Mienfoo", pt: "Mienfoo", de: "Lin-Fu" }, illustrator: "match", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 619, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Pound", fr: "Écras'Face", }, damage: 10, }, { cost: [ "Fighting", "Fighting", ], name: { en: "High Jump Kick", fr: "Pied Voltige", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card