import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Machop", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 66, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Smash Punch", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Fling", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon, if any. (Do the damage before switching the Pokémon.)", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card