mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* 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>
93 lines
1.5 KiB
TypeScript
93 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Stormfront'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Machamp",
|
||
fr: "Mackogneur"
|
||
},
|
||
illustrator: "Masakazu Fukuda",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
68,
|
||
],
|
||
hp: 130,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
evolveFrom: {
|
||
en: "Machoke",
|
||
fr: "Machopeur",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
],
|
||
name: {
|
||
en: "Take Out",
|
||
fr: "Éliminer",
|
||
},
|
||
effect: {
|
||
en: "If the Defending Pokémon isn't an Evolved Pokémon, that Pokémon is Knocked Out instead of damaged by this attack.",
|
||
fr: "Si le Pokémon Défenseur n'est pas un Pokémon Évolué, ce Pokémon est mis K.O par cette attaque.",
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Hurricane Punch",
|
||
fr: "Poing ouragan",
|
||
},
|
||
effect: {
|
||
en: "Flip 4 coins. This attack does 30 damage times the number of heads.",
|
||
fr: "Lancez 4 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de faces.",
|
||
},
|
||
damage: "30×",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Rage",
|
||
fr: "Frénésie",
|
||
},
|
||
effect: {
|
||
en: "Does 60 damage plus 10 more damage for each damage counter on Machamp.",
|
||
fr: "Inflige 60 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur Mackogneur.",
|
||
},
|
||
damage: "60+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "+30"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|