import { Card } from '../../../interfaces' import Set from '../Evolutions' const card: Card = { name: { en: "Hitmonchan", fr: "Tygnon", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 107, ], hp: 90, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Jab", fr: "Taquet", }, damage: 30, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Special Punch", fr: "Punch spécial", }, damage: 90, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card