1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +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 ambiguous Unicode characters

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: "Big Parasol",
fr: "Ombrelle Géante",
es: "Gran Parasol",
it: "Parasole Grande",
pt: "Grande Sombrinha",
de: "Großer Parasol"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "As long as the Pokémon this card is attached to is in the Active Spot, prevent all effects of attacks from your opponents Pokémon done to all of your Pokémon. (Existing effects are not removed. Damage is not an effect.)",
fr: "Tant que le Pokémon auquel cette carte est attachée est sur le Poste Actif, évitez tous les effets dattaques infligés à vos Pokémon par les Pokémon de votre adversaire. (Les effets déjà en action ne sont pas retirés.Les dégâts ne sont pas un effet.)",
es: "Mientras el Pokémon al que esté unida esta carta esté en el Puesto Activo, evita todos los efectos de los ataques de los Pokémon de tu rival infligidos a todos tus Pokémon. (No se eliminan los efectos ya existentes. El daño no es un efecto).",
it: "Fintanto che il Pokémon a cui è assegnata questa carta è in posizione attiva, previeni tutti gli effetti degli attacchi inflitti ai tuoi Pokémon dai Pokémon del tuo avversario. Gli effetti esistenti non vengono rimossi. I danni non sono un effetto.",
pt: "Enquanto o Pokémon ao qual esta carta está ligada estiver no Campo Ativo, previna todos os efeitos de ataques dos Pokémon do seu oponente causados a todos os seus Pokémon (efeitos existentes não são removidos e dano não é um efeito).",
de: "Solange das Pokémon, an das diese Karte angelegt ist, in der Aktiven Position ist, verhindere alle Effekte von Attacken der Pokémon deines Gegners, die allen deinen Pokémon zugefügt werden. (Bestehende Effekte werden nicht entfernt. Schaden ist kein Effekt.)"
},
trainerType: "Tool",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card