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

76 lines
1.4 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Machamp",
fr: "Mackogneur",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
68,
],
hp: 130,
types: [
"Fighting",
],
evolveFrom: {
en: "Machoke",
fr: "Machopeur",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Revenge",
fr: "Vendetta",
},
effect: {
en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during his or her last turn, this attack does 20 damage plus 50 more damage.",
fr: "Si un de vos Pokémon est mis K.O par des dégâts infligés par une attaque de votre adversaire lors de son dernier tour, cette attaque inflige 20 dégâts plus 50 dégâts supplémentaires.",
},
damage: 20,
},
{
cost: [
"Fighting",
"Fighting",
"Fighting",
],
name: {
en: "Dynamic Punch",
fr: "Dynamo-poing",
},
effect: {
en: "Flip a coin. If heads, this attack does 60 damage plus 30 more damage and the Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 60 dégâts plus 30 dégâts supplémentaires et le Pokémon Défenseur est maintenant Confus.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "+30"
},
],
retreat: 3,
}
export default card