1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

47 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Dragonium Z: Dragon Claw",
fr: "Dracozélite : Dracogriffe",
es: "Dracostal Z: Garra Dragón",
it: "Draconium Z: Dragartigli",
pt: "Dragonium Z: Garra de Dragão",
de: "Dracium Z: Drachenklaue"
},
illustrator: "aky CG Works",
rarity: "Uncommon",
category: "Trainer",
set: Set,
attacks: [{
name: {
en: 'Destructive Drake GX',
},
damage: '80×',
effect: {
en: 'Discard all basic Energy from this Pokémon. This attack does 80 damage for each card you discarded in this way. (you can\'t use mote than 1 GX attack in a game.)'
},
cost: [
'Colorless',
'Colorless',
'Colorless'
]
}],
effect: {
fr: "Si le Pokémon auquel cette carte est attachée a lattaque Dracogriffe, il peut utiliser lattaque GX sur cette carte. (Vous avez toujours besoin de lÉnergie nécessaire pour utiliser cette attaque.)\n\nColorlessColorlessColorless Destruction Draconique GX 80×\nDéfaussez toute lÉnergie de base de ce Pokémon. Cette attaque inflige 80 dégâts pour chaque carte défaussée de cette façon. (Vous ne pouvez utiliser quune attaque GX par partie.)",
en: "If the Pokémon this card is attached to has the Dragon Claw attack, it can use the GX attack on this card. (You still need the necessary Energy to use this attack.)",
es: "",
it: "",
pt: "",
de: ""
},
trainerType: "Tool",
}
export default card