import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Hitmontop", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 237, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Double Kick", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Triple Spin", }, effect: { en: "Flip 3 coins. This attack does 20 damage times the number of heads. If you get 2 or more heads, switch Hitmontop with one of your Benched Pokémon, if any. .", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card