1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-10 15:19:55 +00:00

61 lines
1.5 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Hitmonchan",
fr: "Tygnon",
es: "Hitmonchan",
it: "Hitmonchan",
de: "Nockchan",
'pt-br': "Hitmonchan",
ko: "홍수몬"
},
illustrator: "Ken Sugimori",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
en: "Jab",
fr: "Taquet",
es: "Puya",
it: "Stoccata",
de: "Boxschlag",
'pt-br': "Murro",
ko: "잽"
},
damage: "30"
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 1,
rarity: "One Diamond",
description: {
en: "Its punches slice the air. They are launched at such high speed, even a slight graze could cause a burn.",
fr: "Ses poings fendent l'air. Ils sont si rapides\nqu'un simple frôlement peut causer une brûlure.",
es: "Sus puñetazos cortan el aire. Son tan veloces que\nel mínimo roce podría causar una quemadura.",
it: "I suoi pugni fendono l'aria a una tale velocità che\nbasta venire sfiorati per riportare una scottatura.",
de: "Seine Fäuste zerschneiden regelrecht die Luft.\nSie sind so schnell, dass selbst die geringste\nBerührung Verbrennungen verursacht.",
'pt-br': "Seus murros cortam o ar. São tão\nvelozes que um simples toque pode\ncausar uma queimadura.",
ko: "주변의 공기를 가르는 펀치.\n스치기만 해도 화상을 입을 정도로\n펀치 스피드가 매우 빠르다."
},
boosters: ["charizard"]
}
export default card