1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

81 lines
1.4 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Machoke",
fr: "Machopeur"
},
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",
},
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.",
},
damage: "20+",
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Brick Break",
fr: "Casse-brique",
},
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.",
},
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