1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 20:49:54 +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.1 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: "Rescue Carrier",
fr: "Valise de Secours",
es: "Carrito de Rescate",
it: "Trolley di Salvataggio",
pt: "Rescue Carrier",
de: "Rettungsbox"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Put up to 2 Pokémon, each with 90 HP or less, from your discard pile into your hand.",
fr: "Ajoutez jusquà 2 Pokémon, avec chacun 90 PV ou moins, de votre pile de défausse à votre main.",
es: "Pon hasta 2 Pokémon, cada uno con 90 PS o menos, de tu pila de descartes en tu mano.",
it: "Prendi fino a due Pokémon, ciascuno con 90 PS o meno, dalla tua pila degli scarti e aggiungili alle carte che hai in mano.",
pt: "Put up to 2 Pokémon, each with 90 HP or less, from your discard pile into your hand.",
de: "Nimm bis zu 2 Pokémon, jedes mit 90 oder weniger KP, aus deinem Ablagestapel auf deine Hand."
},
trainerType: "Item",
illustrator: "Ryo Ueda"
}
export default card