import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Machop", }, illustrator: "Shin-ichi Yoshida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 66, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Punch", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Double Chop", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card