1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

40 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Energy Recycler",
fr: "Recycleur dÉnergie",
es: "Reciclaje de Energía",
it: "Riciclaggio di Energia",
pt: "Reciclador de Energia",
de: "Energieaufbereitung"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Shuffle up to 5 basic Energy cards from your discard pile into your deck.",
fr: "Mélangez jusquà 5 cartes Énergie de base de votre pile de défausse avec votre deck.",
es: "Pon hasta 5 cartas de Energía Básica de tu pila de descartes en tu baraja y barájalas todas.",
it: "Rimischia fino a cinque carte Energia base dalla tua pila degli scarti nel tuo mazzo.",
pt: "Embaralhe até 5 cartas de Energia básica da sua pilha de descarte no seu baralho.",
de: "Mische bis zu 5 Basis-Energiekarten aus deinem Ablagestapel in dein Deck."
},
trainerType: "Item",
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card