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 Bangle",
fr: "Bracelet dArgent",
es: "Pulsera Plateada",
it: "Braccialargento",
pt: "Bracelete de Prata",
de: "Silberreif"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Les attaques du Pokémon auquel cette carte est attachée (excepté les Pokémon-EX) infligent 30 dégâts supplémentaires aux Pokémon-EX Actifs (avant application de la Faiblesse et de la Résistance).",
en: "The attacks of the Pokémon this card is attached to (excluding Pokémon-EX) do 30 more damage to Active Pokémon-EX (before applying Weakness and Resistance).",
es: "Los ataques del Pokémon al que esté unida esta carta (excluidos los Pokémon-EX) hacen 30 puntos de daño más a los Pokémon Activos-EX (antes de aplicar Debilidad y Resistencia).",
it: "Gli attacchi del Pokémon a cui è assegnata questa carta (esclusi i Pokémon-EX) infliggono 30 danni in più ai Pokémon-EX attivi, prima di aver applicato debolezza e resistenza.",
pt: "Os ataques do Pokémon ao qual este card está ligado (exceto Pokémon-EX) causam 30 de danos adicionais ao Pokémon-EX Ativo (antes da aplicação de Fraqueza e Resistência).",
de: "Die Angriffe des Pokémon, an das diese Karte angelegt ist (außer Pokémon-EX), fügen Aktiven Pokémon-EX 30 weitere Schadenspunkte zu (bevor Schwäche und Resistenz verrechnet werden)."
},
trainerType: "Tool",
}
export default card