import { Card } from '../../../interfaces' import Set from '../HGSS Black Star Promos' const card: Card = { name: { en: "Hitmonchan", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 107, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Detect", }, effect: { en: "Flip a coin. If heads, prevent all effects of attacks, including damage, done to Hitmonchan during your opponent's next turn.", }, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Sky Uppercut", }, effect: { en: "This attack's damage isn't affected by Resistance.", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card