import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Hitmonchan", fr: "Tygnon", }, illustrator: "match", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 107, ], hp: 90, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Bullet Punch", fr: "Pisto-Poing", }, effect: { en: "Flip 2 coins. This attack does 20 more damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.", }, damage: "20+", }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Mach Cross", fr: "Passage Éclair", }, damage: 60, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card