mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
81 lines
1.4 KiB
TypeScript
81 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Aquapolis'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Hitmonchan",
|
||
fr: "Tygnon",
|
||
de: "Nockchan"
|
||
},
|
||
illustrator: "Tomokazu Komiya",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
107,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Fighting",
|
||
],
|
||
name: {
|
||
en: "Rush",
|
||
fr: "Précipitation",
|
||
de: "Hatz"
|
||
},
|
||
effect: {
|
||
en: "Flip 5 coins. This attack does 10 damage times the number of heads. Hitmonchan can't attack during your next turn.",
|
||
fr: "Lancez 5 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces. Tygnon ne peut pas attaquer pendant votre prochain tour.",
|
||
de: "Wirf 5 Münzen. Dieser Angriff fügt 10 Schadenspunkte mal der Anzahl 'Kopf' zu. Nockchan kann während deines nächsten Zuges nicht angreifen."
|
||
},
|
||
damage: "10x",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
|
||
name: {
|
||
en: "Smash Punch",
|
||
fr: "Ruade",
|
||
de: "Schmetterschlag"
|
||
},
|
||
|
||
effect: {
|
||
en: "Flip a coin. If tails, this attack does nothing.",
|
||
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
||
de: "Wirf eine Münze. Bei 'Zahl' hat dieser Angriff keine Auswirkungen."
|
||
},
|
||
|
||
damage: 50
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|