1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* 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>
2021-09-02 12:01:58 +02:00

42 lines
1.5 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 '../Plasma Blast'
const card: Card = {
name: {
en: "Silver Mirror",
fr: "Miroir dArgent",
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 dattaques (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 opponents 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