import { Card } from '../../../interfaces' import Set from '../Guardians Rising' const card: Card = { name: { en: "Machop", fr: "Machoc", }, illustrator: "Kyoko Umemoto", 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 30 damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card