1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

39 lines
1.7 KiB
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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Lucky Ice Pop",
fr: "Glace Chanceuse",
es: "Helado Suerte",
it: "Ghiacciolo della Fortuna",
pt: "Lucky Ice Pop",
de: "Glücks-Eis"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Heal 20 damage from your Active Pokémon. If you healed any damage in this way, flip a coin. If heads, put this Lucky Ice Pop into your hand instead of the discard pile.",
fr: "Soignez 20 dégâts de votre Pokémon Actif. Si des dégâts sont ainsi soignés, lancez une pièce. Si cest face, placez cette Glace Chanceuse dans votre main plutôt que dans votre pile de défausse.",
es: "Cura 20 puntos de daño a tu Pokémon Activo. Si has curado algún punto de daño de esta manera, lanza 1 moneda. Si sale cara, pon este Helado Suerte en tu mano en vez de en la pila de descartes.",
it: "Cura il tuo Pokémon attivo da 20 danni. Se hai curato dei danni in questo modo, lancia una moneta. Se esce testa, prendi questo Ghiacciolo della Fortuna e aggiungilo alle carte che hai in mano invece che alla pila degli scarti.",
pt: "Heal 20 damage from your Active Pokémon. If you healed any damage in this way, flip a coin. If heads, put this Lucky Ice Pop into your hand instead of the discard pile.",
de: "Heile 20 Schadenspunkte bei deinem Aktiven Pokémon. Wenn du auf diese Weise Schaden geheilt hast, wirf 1 Münze. Nimm bei Kopf dieses Glücks-Eis auf deine Hand, anstatt es auf deinen Ablagestapel zu legen."
},
trainerType: "Item",
illustrator: "inose yukie"
}
export default card