mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
39 lines
1.7 KiB
TypeScript
39 lines
1.7 KiB
TypeScript
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 c’est 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 |