import { Card } from '../../../interfaces' import Set from '../Wizards Black Star Promos' const card: Card = { name: { en: "Machamp", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 68, ], hp: 90, types: [ "Fighting", ], evolveFrom: { en: "Machoke", }, stage: "Stage2", attacks: [ { cost: [ "Fighting", "Fighting", ], name: { en: "Seething Anger", }, effect: { en: "Flip a number of coins equal to the number of damage counters on Machamp. This attack does 20 damage plus 10 more damage for each heads.", }, damage: 20, }, { cost: [ "Fighting", "Fighting", "Colorless", "Colorless", ], name: { en: "Fling", }, effect: { en: "If your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. (Do the damage before switching the Pokémon.)", }, damage: 50, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card