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

82 lines
1.5 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Marshadow-GX",
fr: "Marshadow-GX",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
802,
],
hp: 150,
types: [
"Fighting",
],
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Shadow Hunt",
fr: "Chasse Dans lOmbre",
},
effect: {
en: "This Pokémon can use the attacks of any Basic Pokémon in your discard pile. (You still need the necessary Energy to use each attack.)",
fr: "Ce Pokémon peut utiliser les attaques de nimporte quel Pokémon de base dans votre pile de défausse. (Vous avez toujours besoin de lÉnergie nécessaire pour utiliser chaque attaque.)",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Beatdown",
fr: "Dérouillée",
},
damage: 120,
},
{
cost: [
"Fighting",
],
name: {
en: "Peerless Hundred Blows-GX",
fr: "Cent Coups Incomparables-GX",
},
effect: {
en: "This attack does 50 damage times the amount of basic Energy attached to this Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Cette attaque inflige 50 dégâts multipliés par le nombre dÉnergies de base attachées à ce Pokémon. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card