1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42: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
760 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.

import { Card } from '../../../interfaces'
import Set from '../Unified Minds'
const card: Card = {
name: {
en: "Great Potion",
fr: "Potion Géniale",
es: "Gran Poción",
it: "Gran Pozione",
pt: "Grande Poção",
de: "Großartiger Trank"
},
illustrator: "Yoshinobu Saito",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez 50 dégâts à votre Pokémon-GX Actif.",
en: "Heal 50 damage from your Active Pokémon-GX.",
es: "Cura 50 puntos de daño a tu Pokémon-GX Activo.",
it: "Cura il tuo Pokémon-GX attivo da 50 danni.",
pt: "Cure 50 pontos de dano do seu Pokémon-GX Ativo.",
de: "Heile 50 Schadenspunkte bei deinem Aktiven Pokémon-GX."
},
trainerType: "Item",
}
export default card