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
1017 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Aspertia City Gym",
fr: "Arène de Pavonnay",
es: "Gimnasio Engobe",
it: "Palestra di Alisopoli",
pt: "Ginásio da Cidade de Aspertia",
de: "Eventura City-Arena"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Ajoute 20 PV à chacun des Pokémon Colorless en jeu (les vôtres et ceux de votre adversaire).",
en: "Each Colorless Pokémon in play (both yours and your opponents) gets +20 HP.",
es: "Cada Pokémon Colorless en juego (tanto tuyos como de tu rival) obtiene 20 PV más.",
it: "Ciascun Pokémon Colorless in gioco, sia tuo che del tuo avversario, ha 20 PV in più.",
pt: "Cada Pokémon Colorless em jogo (tanto seu quanto do seu oponente) recebe +20 PS.",
de: "Jedes Colorless-Pokémon im Spiel (deine und die deines Gegners) erhält +20 KP."
},
trainerType: "Stadium",
}
export default card