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
1.1 KiB
TypeScript
Raw Permalink 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.

import { Card } from '../../../interfaces'
import Set from '../Team Up'
const card: Card = {
name: {
en: "Electrocharger",
fr: "Électrochargeur",
es: "Electrocargador",
it: "Caricatore Elettrico",
pt: "Eletrocarregador",
de: "Elektro-Ladegerät"
},
illustrator: "Eske Yoshinob",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Lancez 2 pièces. Pour chaque côté face, mélangez une carte Électropuissance de votre pile de défausse avec votre deck.",
en: "Flip 2 coins. For each heads, shuffle an Electropower card from your discard pile into your deck.",
es: "Lanza 2 monedas. Por cada cara, pon 1 carta de Electropoder de tu pila de descartes en tu baraja y barájalas todas.",
it: "Lancia due volte una moneta. Ogni volta che esce testa, rimischia una carta Potenziatore Elettrico dalla tua pila degli scarti e aggiungila al tuo mazzo.",
pt: "Jogue 2 moedas. Para cada cara, embaralhe 1 carta Eletropoder da sua pilha de descarte no seu baralho.",
de: "Wirf 2 Münzen. Mische pro Kopf 1 Elektrokraft-Karte aus deinem Ablagestapel in dein Deck."
},
trainerType: "Item",
}
export default card