1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 07:09:54 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

33 lines
1009 B
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 '../Sword & Shield'
const card: Card = {
name: {
en: "Energy Retrieval",
fr: "Récupération dÉnergie",
es: "Recuperación de Energía",
it: "Recupero di Energia",
pt: "Recuperação de Energia",
de: "Energie-Zugewinn"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Put up to 2 basic Energy cards from your discard pile into your hand.",
fr: "Ajoutez à votre main jusquà 2 cartes Énergie de base de votre pile de défausse.",
es: "Pon hasta 2 cartas de Energía Básica de tu pila de descartes en tu mano.",
it: "Prendi fino a due carte Energia base dalla tua pila degli scarti e aggiungile alle carte che hai in mano.",
pt: "Coloque até 2 cartas de Energia básica da sua pilha de descarte na sua mão.",
de: "Nimm bis zu 2 Basis-Energiekarten aus deinem Ablagestapel auf deine Hand."
},
trainerType: "Item",
regulationMark: "D"
}
export default card