1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

75 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Machoke",
fr: "Machoke",
},
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 Faiblesse, 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,
}
export default card