import { Card } from '../../../interfaces' import Set from '../Great Encounters' const card: Card = { name: { en: "Makuhita", fr: "Makuhita", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 296, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Punch", fr: "Koud'poing", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Arm Thrust", fr: "Cogne", }, effect: { en: "Flip a coin. If tails, this attack does nothing. If heads, discard an Energy card attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "+10" }, ], retreat: 2, } export default card