mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
44 lines
692 B
TypeScript
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 |