import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Machoke", }, illustrator: "Hajime Kusajima", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 67, ], hp: 80, types: [ "Fighting", ], evolveFrom: { en: "Machop", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Strikes Back", }, effect: { en: "If Machoke is your Active Pokémon and is damaged by an opponent's attack (even if Machoke is Knocked Out), put 1 damage counter on the Attacking Pokémon.", }, }, ], attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Low Kick", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card