import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Light Machamp", }, illustrator: "Miki Tanaka", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 68, ], hp: 100, types: [ "Fighting", ], evolveFrom: { en: "Machoke", }, stage: "Stage2", attacks: [ { cost: [ "Fighting", "Fighting", "Fighting", ], name: { en: "Beatdown", }, effect: { en: "If the Defending Pokémon has Dark in its name or is a Pokémon, flip a coin. If heads, this attack does 100 damage instead of 50.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card