mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
86 lines
1.7 KiB
TypeScript
86 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Stormfront'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Machoke",
|
|
fr: "Machopeur",
|
|
de: "Maschock"
|
|
},
|
|
|
|
illustrator: "Sachiko Adachi",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
67,
|
|
],
|
|
|
|
hp: 80,
|
|
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Machop",
|
|
fr: "Machoc",
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
],
|
|
name: {
|
|
en: "Steady Punch",
|
|
fr: "Poing énergétique",
|
|
de: "Ruhiger Schlag"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage.",
|
|
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 20 dégâts supplémentaires.",
|
|
de: "Wirf 1 Münze. Bei \"Kopf\" fügt dieser Angriff 20 Schadenspunkte plus 20 weitere Schadenspunkte zu."
|
|
},
|
|
damage: "20+",
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Brick Break",
|
|
fr: "Casse-brique",
|
|
de: "Durchbruch"
|
|
},
|
|
effect: {
|
|
en: "This attack's damage isn't affected by Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.",
|
|
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance, les Poké-Powers, les Poké-Bodies ou tout autre effet sur le Pokémon Défenseur.",
|
|
de: "Resistenz, Poké-Power, Poké-Body und alle anderen Effekte auf dem Verteidigenden Pokémon haben keine Auswirkungen auf die Schadenspunkte dieses Angriffs."
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Psychic",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
retreat: 2,
|
|
|
|
description: {
|
|
fr: "La force herculéenne du MACHOPEUR est très dangereuse. Il utilise une ceinture pour contenir son énergie."
|
|
}
|
|
}
|
|
|
|
export default card
|