1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

41 lines
1.1 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: "Rescue Carrier",
fr: "Valise de Secours",
es: "Carrito de Rescate",
it: "Trolley di Salvataggio",
pt: "Carrinho de Resgate",
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: "Coloque até 2 Pokémon, cada um com 90 PS ou menos, da sua pilha de descarte na sua mão.",
de: "Nimm bis zu 2 Pokémon, jedes mit 90 oder weniger KP, aus deinem Ablagestapel auf deine Hand."
},
trainerType: "Item",
illustrator: "Ryo Ueda",
regulationMark: "E"
}
export default card