1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/102.ts

44 lines
692 B
TypeScript

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