1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00

72 lines
917 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Furious Fists'
const card: Card = {
name: {
en: "Hitmontop",
fr: "Kapoera",
},
illustrator: "kawayoo",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
237,
],
hp: 90,
types: [
"Fightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Quick Draw",
fr: "Pioche Rapide",
},
effect: {
en: "Draw a card.",
fr: "Piochez une carte.",
},
},
{
cost: [
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Helicoptero",
fr: "Helicoptero",
},
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Échangez ce Pokémon avec l'un de vos Pokémon de Banc.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card