import { Card } from '../../../interfaces' import Set from '../Power Keepers' 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: [ "Colorless", ], name: { en: "Steady Punch", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.", }, damage: 10, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Mega Kick", }, damage: 50, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card