1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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
1010 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.

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 '../Celestial Storm'
const card: Card = {
name: {
en: "Last Chance Potion",
fr: "Potion de la Dernière Chance",
es: "Poción Última Oportunidad",
it: "Pozione Ultima Chance",
pt: "Poção de Última Hora",
de: "Letzte-Chance-Trank"
},
illustrator: "Ayaka Yoshida",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez 120 dégâts à lun de vos Pokémon auquel il reste 30 PV ou moins.",
en: "Heal 120 damage from 1 of your Pokémon that has 30 HP or less remaining.",
es: "Cura 120 puntos de daño a 1 de tus Pokémon a los que le queden 30 PS o menos.",
it: "Cura da 120 danni uno dei tuoi Pokémon che ha 30 PS o meno rimanenti.",
pt: "Cure 120 pontos de dano de 1 dos seus Pokémon que tiver PS restante de 30 ou menos.",
de: "Heile 120 Schadenspunkte bei 1 deiner Pokémon, dessen verbleibende KP 30 oder weniger betragen."
},
trainerType: "Item",
}
export default card