import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Machop", fr: "Machoc" }, illustrator: "Shibuzoh.", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Fighting", ], attacks: [ { cost: [ "Fighting", ], name: { en: "Low Kick", fr: "Balayage" }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Steady Punch", fr: "Poing Énergétique" }, effect: { en: "Flip a coin. If heads, this attack does 40 more damage.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 40 dégâts supplémentaires." }, damage: "20+", }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card