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
723 B
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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Gold Potion",
fr: "Potion dOr",
es: "Poción Áurea",
it: "Pozione dOro",
pt: "Poção de Ouro",
de: "Goldtrank"
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez 90 dégâts à votre Pokémon Actif.",
en: "Heal 90 damage from your Active Pokémon.",
es: "Cura 90 puntos de daño a tu Pokémon Activo.",
it: "Cura il tuo Pokémon attivo da 90 danni.",
pt: "Cure 90 de danos do seu Pokémon Ativo.",
de: "Heile 90 Schadenspunkte bei deinem Aktiven Pokémon."
},
trainerType: "Item",
}
export default card