mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
42 lines
1010 B
TypeScript
42 lines
1010 B
TypeScript
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 à l’un 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
|