1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 06:12:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +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 '../Guardians Rising'
const card: Card = {
name: {
en: "Max Potion",
fr: "Potion Max",
es: "Poción Máxima",
it: "Pozione Max",
pt: "Poção Máxima",
de: "Top-Trank"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez tous les dégâts de lun de vos Pokémon. Dans ce cas, défaussez toutes les Énergies attachées à ce Pokémon.",
en: "Heal all damage from 1 of your Pokémon. If you do, discard all Energy from that Pokémon.",
es: "Cura todos los puntos de daño a 1 de tus Pokémon. Si lo haces, descarta todas las Energías unidas a ese Pokémon.",
it: "Cura uno dei tuoi Pokémon da tutti i danni. Se lo fai, scarta tutte le Energie assegnate a quel Pokémon.",
pt: "Cure todo o dano de 1 dos seus Pokémon. Se fizer isto, descarte todas as Energias ligadas àquele Pokémon.",
de: "Heile allen Schaden bei 1 deiner Pokémon. Wenn du das machst, lege alle Energien von jenem Pokémon auf deinen Ablagestapel."
},
trainerType: "Item",
}
export default card