1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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.2 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 Storm'
const card: Card = {
name: {
en: "Virbank City Gym",
fr: "Arène dOndes-sur-Mer",
es: "Gimnasio Hormigón",
it: "Palestra di Zondopoli",
pt: "Ginásio da Cidade de Virbank",
de: "Vapydro City-Arena"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Placez 2 marqueurs de dégâts supplémentaires sur les Pokémon Empoisonnés (les vôtres et ceux de votre adversaire) entre chaque tour.",
en: "Put 2 more damage counters on Poisoned Pokémon (both yours and your opponents) between turns.",
es: "Pon 2 contadores de daño más sobre los Pokémon Envenenados (tanto tuyos como de tu rival) entre turnos.",
it: "Metti altri due segnalini danno sui Pokémon avvelenati, sia tuoi che del tuo avversario, tra un turno e laltro.",
pt: "Coloque 2 marcadores de danos adicionais nos Pokémon Envenenados (tanto seus quanto do seu oponente) entre as vezes de jogar.",
de: "Lege zwischen den Zügen 2 weitere Schadensmarken auf vergiftete Pokémon (deine und die deines Gegners)."
},
trainerType: "Stadium",
}
export default card