1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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.6 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: "Iris",
fr: "Iris",
es: "Iris",
it: "Iris",
pt: "Iris",
de: "Lilia"
},
illustrator: "Kagemaru Himeno",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Pendant ce tour, les attaques de vos Pokémon infligent 10 dégâts supplémentaires aux Pokémon Actifs pour chaque carte Récompense que votre adversaire a récupérée (avant application de la Faiblesse et de la Résistance).",
en: "During this turn, your Pokémons attacks do 10 more damage to the Active Pokémon for each Prize card your opponent has taken (before applying Weakness and Resistance).",
es: "Durante este turno, los ataques de tus Pokémon hacen 10 puntos de daño más a los Pokémon Activos por cada carta de Premio que haya tomado tu rival (antes de aplicar Debilidad y Resistencia).",
it: "Durante questo turno, gli attacchi dei tuoi Pokémon infliggono 10 danni in più ai Pokémon attivi per ogni carta Premio presa dal tuo avversario, prima di aver applicato debolezza e resistenza.",
pt: "Durante este turno, os ataques dos seus Pokémon causam 10 de danos adicionais ao Pokémon Ativo para cada card de Prêmio que seu oponente tiver obtido (antes da aplicação de Fraqueza e Resistência).",
de: "Während dieses Zuges fügen alle Angriffe deiner Pokémon den Aktiven Pokémon 10 weitere Schadenspunkte für jede Preiskarte zu, die dein Gegner bereits genommen hat (bevor Schwäche und Resistenz verrechnet werden)."
},
trainerType: "Supporter",
}
export default card