mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
42 lines
1.5 KiB
TypeScript
42 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Plasma Blast'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Silver Mirror",
|
||
fr: "Miroir d’Argent",
|
||
es: "Espejo Plateado",
|
||
it: "Specchiargento",
|
||
pt: "Espelho de Prata",
|
||
de: "Silberspiegel"
|
||
},
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Évitez tous les effets d’attaques (y compris les dégâts) infligés au Pokémon auquel cette carte est attachée (excepté les Pokémon-EX) par les Pokémon de la Team Plasma de votre adversaire.",
|
||
en: "Prevent all effects of attacks, including damage, done to the Pokémon this card is attached to (excluding Pokémon-EX) by your opponent’s Team Plasma Pokémon.",
|
||
es: "Evita todos los efectos de los ataques, incluido el daño, infligidos al Pokémon al que esté unida esta carta (excluidos los Pokémon-EX) por los Pokémon del Equipo Plasma de tu rival.",
|
||
it: "Previeni tutti gli effetti degli attacchi, inclusi i danni, inflitti al Pokémon a cui è assegnata questa carta (esclusi i Pokémon-EX) dai Pokémon del Team Plasma del tuo avversario.",
|
||
pt: "Impede todos os efeitos de ataque, incluindo danos, causados ao Pokémon ao qual este card está ligado (exceto Pokémon-EX) e realizados pelo Pokémon da Equipe Plasma do oponente.",
|
||
de: "Verhindere alle Effekte von Angriffen, einschließlich Schaden, die dem Pokémon, an das diese Karte angelegt ist (außer Pokémon-EX), durch Team Plasma-Pokémon deines Gegners zugefügt werden."
|
||
},
|
||
trainerType: "Tool",
|
||
|
||
}
|
||
|
||
export default card
|