1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 05:29:55 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

40 lines
2.0 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Struggle Gloves",
fr: "Gants dÉpreuve",
es: "Guantes de Lucha",
it: "Guantoni Debolezza",
pt: "Luvas do Esforço",
de: "Kampfhandschuhe"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "If the Pokémon this card is attached to has Weakness to your opponents Active Pokémons type, its attacks do 30 more damage to your opponents Active Pokémon (before applying Weakness and Resistance).",
fr: "Si le Pokémon auquel cette carte est attachée a une Faiblesse envers le type du Pokémon Actif de votre adversaire, ses attaques infligent 30 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
es: "Si el Pokémon al que está unida esta carta tiene Debilidad al tipo del Pokémon Activo de tu rival, sus ataques hacen 30 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).",
it: "Se il Pokémon a cui è assegnata questa carta ha una debolezza verso il tipo del Pokémon attivo del tuo avversario, i suoi attacchi infliggono 30 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.",
pt: "Se o Pokémon ao qual esta carta está ligada tiver Fraqueza ao tipo do Pokémon Ativo do seu oponente, seus ataques causarão 30 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).",
de: "Wenn das Pokémon, an das diese Karte angelegt ist, eine Schwäche gegen den Typ des Aktiven Pokémon deines Gegners hat, fügen seine Attacken dem Aktiven Pokémon deines Gegners 30 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
},
trainerType: "Tool",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card