import { Card } from '../../../interfaces' import Set from '../Base Set 2' const card: Card = { name: { en: "Machoke", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 67, ], hp: 80, types: [ "Fighting", ], evolveFrom: { en: "Machop", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Karate Chop", }, effect: { en: "Does 50 damage minus 10 for each damage counter on Machoke.", }, }, { cost: [ "Fighting", "Fighting", "Colorless", "Colorless", ], name: { en: "Submission", }, effect: { en: "Machoke does 20 damage to itself.", }, damage: 60, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card