1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02: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.1 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 '../Emerging Powers'
const card: Card = {
name: {
en: "Max Potion",
fr: "Potion Max",
es: "Máxima Poción",
it: "Pozione Max",
pt: "Poção Máxima",
de: "Top-Trank"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez tous les dégâts de lun de vos Pokémon. Ensuite, défaussez toutes les Énergies attachées au Pokémon choisi.",
en: "Heal all damage from 1 of your Pokémon. Then, discard all Energy attached to that Pokémon.",
es: "Cura todos los puntos de daño a 1 de tus Pokémon. Después, descarta todas las Energías unidas a ese Pokémon.",
it: "Cura uno dei tuoi Pokémon da tutti i danni. Poi scarta tutta lEnergia assegnata a quel Pokémon.",
pt: "Cure todos os danos de 1 dos seus Pokémon. Em seguida, descarte toda a Energia ligada a este Pokémon.",
de: "Heile allen Schaden bei 1 deiner Pokémon. Lege alle Energien, die an das Pokémon angelegt sind, auf deinen Ablagestapel."
},
trainerType: "Item",
}
export default card