import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Hitmonlee", }, illustrator: "Yukiko Baba", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 106, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", "Fighting", ], name: { en: "One-Two Kick", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, { cost: [ "Fighting", "Fighting", "Fighting", ], name: { en: "Heel Drop", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card