1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,93 @@
import { Card } from '../../../interfaces'
import Set from '../Burning Shadows'
const card: Card = {
name: {
en: "Machamp-GX",
fr: "Mackogneur-GX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
68,
],
hp: 250,
types: [
"Fightning",
],
evolveFrom: {
en: "Machoke",
fr: "Machopeur",
},
suffix: "GX",
attacks: [
{
cost: [
"Fightning",
"Fightning",
],
name: {
en: "Cross-Cut",
fr: "Coupe Transversale",
},
effect: {
en: "If your opponent's Active Pokémon is an Evolution Pokémon, this attack does 60 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Évolutif, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 60,
},
{
cost: [
"Fightning",
"Fightning",
"Fightning",
],
name: {
en: "Bedrock Breaker",
fr: "Brise Fondation",
},
effect: {
en: "Discard any Stadium card in play.",
fr: "Défaussez toute carte Stade en jeu.",
},
damage: 130,
},
{
cost: [
"Fightning",
"Fightning",
"Fightning",
],
name: {
en: "Muscle Punch-GX",
fr: "Poing Musclé-GX",
},
effect: {
en: "This attack's damage isn't affected by Resistance. (You can't use more than 1 GX attack in a game.)",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 180,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card