1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 12:49:54 +00:00

40 lines
600 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Hitmontop"
},
illustrator: "sowsow",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
description: {
en: "It launches kicks while spinning. If it spins at high<br />speed, it may bore its way into the ground."
},
stage: "Basic",
attacks: [{
name: {
en: "Spinning Attack"
},
damage: 50,
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 1
}
export default card