import { Card } from '../../../interfaces' import Set from '../Legend Maker' const card: Card = { name: { en: "Machop", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 66, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Mach Punch", }, effect: { en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card