import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Machop", fr: "Machoc", }, illustrator: "Mina Nakai", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 66, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Knuckle Punch", fr: "Coud'Phalange", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card