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.8 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: "Reversal Trigger",
fr: "Déclencheur Inversé",
es: "Inversionador",
it: "Invertitore",
pt: "Gatilho Reverso",
de: "Rückauslöser"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Lorsque le Pokémon de la Team Plasma auquel cette carte est attachée est mis K.O. par les dégâts dune attaque de votre adversaire, cherchez une carte dans votre deck puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
en: "When the Team Plasma Pokémon this card is attached to is Knocked Out by damage from an opponents attack, search your deck for a card and put it into your hand. Shuffle your deck afterward.",
es: "Cuando el Pokémon del Equipo Plasma al que esté unida esta carta quede Fuera de Combate por el daño de un ataque de tu rival, busca en tu baraja una carta y ponla en tu mano. Baraja las cartas de tu baraja después.",
it: "Quando il Pokémon del Team Plasma a cui è assegnata questa carta viene messo K.O. dai danni inflitti da un attacco del tuo avversario, cerca nel tuo mazzo una carta qualsiasi e aggiungila a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Quando o Pokémon da Equipe Plasma que este card está ligado for Nocauteado por danos causados pelo ataque do oponente, procure um card em seu baralho e coloque-o em sua mão. Em seguida, embaralhe seus cards.",
de: "Wenn das Team Plasma-Pokémon, an das diese Karte angelegt ist, durch Schaden eines gegnerischen Angriffs kampfunfähig wird, durchsuche dein Deck nach 1 Karte und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
trainerType: "Tool",
}
export default card