1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 20:49: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

103 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Unbroken Bonds'
const card: Card = {
name: {
en: "Marshadow & Machamp-GX",
fr: "Marshadow et Mackogneur-GX",
},
illustrator: "You Iribi",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
68,
],
hp: 270,
types: [
"Fighting",
],
suffix: "TAG TEAM-GX",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Revenge",
fr: "Règle des ESCOUADES",
},
effect: {
en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during their last turn, this attack does 90 more damage.",
},
damage: 30,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Hundred-Blows Impact",
fr: "Vendetta",
},
effect: {
fr: "Si lun de vos Pokémon a été mis K.O. par les dégâts dune attaque de votre adversaire pendant son dernier tour, cette attaque inflige 90 dégâts supplémentaires.",
},
damage: 160,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Acme of Heroism-GX",
fr: "Les Cent Coups",
},
effect: {
en: "If this Pokémon has at least 1 extra Energy attached to it (in addition to this attack's cost), and if it would be Knocked Out by damage from an opponent's attack during their next turn, it is not Knocked Out, and its remaining HP becomes 10. (You can't use more than 1 GX attack in a game.)",
},
damage: 200,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
fr: "Summum Héroïque-GX",
},
effect: {
fr: "Si au moins une Énergie supplémentaire est attachée à ce Pokémon (en plus du coût de cette attaque), et sil doit être mis K.O. par les dégâts dune attaque de ladversaire pendant son prochain tour, ce Pokémon nest pas mis K.O. et il lui reste 10 PV. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 200,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card