import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Hitmontop" }, illustrator: "Hisao Nakamura", rarity: "One Diamond", category: "Pokemon", hp: 80, types: ["Fighting"], description: { en: "It launches kicks while spinning. If it spins at high\nspeed, it may bore its way into the ground." }, stage: "Basic", attacks: [{ name: { en: "Piercing Spin" }, damage: 20, cost: ["Fighting"], effect: { en: "This attack also does 20 damage to 1 of your opponent's Benched Pokémon." } }], weaknesses: [{ type: "Psychic", value: "+20" }], retreat: 2 } export default card