1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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 '../Dragons Exalted'
const card: Card = {
name: {
en: "Rescue Scarf",
fr: "Foulard de Sauvetage",
es: "Bufanda Rescatadora",
it: "Sciarpa Salvagente",
pt: "Cachecol de Resgate",
de: "Rettender Schal"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Si le Pokémon auquel cette carte est attachée est mis K.O. par les dégâts dune attaque, placez-le dans votre main. (Défaussez toutes les cartes attachées au Pokémon mis K.O.)",
en: "If the Pokémon this card is attached to is Knocked Out by damage from an attack, put that Pokémon into your hand. (Discard all cards attached to that Pokémon.)",
es: "Si el Pokémon al que está unida esta carta queda Fuera de Combate por un ataque, pon ese Pokémon en tu mano. (Descarta todas las cartas unidas a ese Pokémon.)",
it: "Se il Pokémon a cui è assegnata questa carta viene messo K.O. dal danno di un attacco, riprendi in mano quel Pokémon, ma scarta tutte le carte assegnategli.",
pt: "Se o Pokémon ao qual esse card está ligado for Nocauteado por danos de um ataque, coloque esse Pokémon em sua mão. (Descarte todos os cards ligados a esse Pokémon.)",
de: "Nimm das Pokémon, an das diese Karte angelegt ist, auf die Hand, wenn es durch Schaden eines Angriffs kampfunfähig wird. (Lege alle an dieses Pokémon angelegten Karten auf deinen Ablagestapel.)"
},
trainerType: "Tool",
}
export default card