import { Card } from '../../../interfaces' import Set from '../Base Set' const card: Card = { name: { en: "Hitmonchan", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 107, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Jab", }, damage: 20, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Special Punch", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card