1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
971 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 '../Forbidden Light'
const card: Card = {
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: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Mélangez 5 cartes Énergie de base de votre pile de défausse avec votre deck.",
en: "Shuffle 5 basic Energy cards from your discard pile into your deck.",
es: "Pon 5 cartas de Energía Básica de tu pila de descartes en tu baraja y barájalas todas.",
it: "Rimischia cinque carte Energia base dalla tua pila degli scarti nel tuo mazzo.",
pt: "Embaralhe 5 cartas de Energia básica da sua pilha de descarte no seu baralho.",
de: "Mische 5 Basis-Energiekarten aus deinem Ablagestapel in dein Deck."
},
trainerType: "Item",
}
export default card