import { Card } from '../../../interfaces' import Set from '../Evolutions' const card: Card = { name: { en: "Machop", fr: "Machoc", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 66, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", "Fighting", ], name: { en: "Dual Chop", fr: "Double Baffe", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card