1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

39 lines
1.8 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Spirit Mask",
fr: "Masque Spirituel",
es: "Máscara de los Espíritus",
it: "Maschera degli Spiriti",
pt: "Spirit Mask",
de: "Seelenmaske"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "If the Pokémon this card is attached to is in the Active Spot and is damaged by an attack from your opponents Pokémon (even if it is Knocked Out), your opponent discards a card from their hand.",
fr: "Si le Pokémon auquel cette carte est attachée est sur le Poste Actif et quil subit les dégâts dune attaque dun Pokémon de votre adversaire (même sil est mis K.O.), votre adversaire défausse une carte de sa main.",
es: "Si el Pokémon al que está unida esta carta está en el Puesto Activo y resulta dañado por un ataque de los Pokémon de tu rival (incluso si queda Fuera de Combate), tu rival descarta 1 carta de su mano.",
it: "Se il Pokémon a cui è assegnata questa carta è in posizione attiva e viene danneggiato da un attacco di un Pokémon del tuo avversario, anche se viene messo KO, il tuo avversario scarta una carta che ha in mano.",
pt: "If the Pokémon this card is attached to is in the Active Spot and is damaged by an attack from your opponents Pokémon (even if it is Knocked Out), your opponent discards a card from their hand.",
de: "Wenn das Pokémon, an das diese Karte angelegt ist, in der Aktiven Position ist und durch eine Attacke von Pokémon deines Gegners Schaden erhält (auch wenn es dadurch kampfunfähig wird), legt dein Gegner 1 Karte aus seiner Hand auf seinen Ablagestapel."
},
trainerType: "Tool",
illustrator: "AYUMI ODASHIMA"
}
export default card