import { Card } from '../../../interfaces' import Set from '../Call of Legends' const card: Card = { name: { en: "Hitmontop", }, illustrator: "Shigenori Negishi", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 237, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Triple Kick", }, effect: { en: "Flip 3 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Close Combat", }, effect: { en: "During your opponent's next turn, any damage done to Hitmontop by attacks is increased by 20 (after applying Weakness and Resistance).", }, damage: 60, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card