1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00: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 '../Evolutions'
const card: Card = {
name: {
en: "Super Potion",
fr: "Super Potion",
es: "Superpoción",
it: "Superpozione",
pt: "Superpoção",
de: "Supertrank"
},
illustrator: "Keiji Kinebuchi",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez 60 dégâts à lun de vos Pokémon. Dans ce cas, défaussez une Énergie attachée au Pokémon choisi.",
en: "Heal 60 damage from 1 of your Pokémon. If you do, discard an Energy attached to that Pokémon.",
es: "Cura 60 puntos de daño a 1 de tus Pokémon. Si lo haces, descarta 1 Energía unida a ese Pokémon.",
it: "Cura uno dei tuoi Pokémon da 60 danni. Se lo fai, scarta unEnergia assegnata a quel Pokémon.",
pt: "Cure 60 de danos de 1 dos seus Pokémon. Se fizer isso, descarte uma Energia ligada àquele Pokémon.",
de: "Heile 60 Schadenspunkte bei 1 deiner Pokémon. Wenn du das machst, lege 1 an dieses Pokémon angelegte Energie auf deinen Ablagestapel."
},
trainerType: "Item",
}
export default card