mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 05:12:11 +00:00
57 lines
864 B
TypeScript
57 lines
864 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Promos'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Machamp-EX",
|
||
fr: "Mackogneur-EX",
|
||
},
|
||
illustrator: "Eske Yoshinob",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
68,
|
||
],
|
||
hp: 180,
|
||
types: [
|
||
"Fightning",
|
||
],
|
||
|
||
|
||
suffix: "EX",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Steaming Mad",
|
||
fr: "Fou Furax",
|
||
},
|
||
effect: {
|
||
en: "This attack does 20 damage times the number of damage counters on this Pokémon. This Pokémon is now Confused.",
|
||
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre de marqueurs de dégâts placés sur ce Pokémon. Ce Pokémon est maintenant Confus.",
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|