1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

42 lines
977 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Emerging Powers'
const card: Card = {
name: {
en: "Recycle",
fr: "Recyclage",
es: "Reciclaje",
it: "Riciclo",
pt: "Reciclagem",
de: "Aufbereitung"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Lancez une pièce. Si cest face, placez une carte de votre pile de défausse sur le dessus de votre deck.",
en: "Flip a coin. If heads, put a card from your discard pile on top of your deck.",
es: "Puedes jugar tantas cartas de Objeto como quieras durante tu turno (antes de tu ataque).",
it: "Puoi giocare tutte le carte Strumento che vuoi durante il tuo turno, prima di attaccare.",
pt: "Jogue uma moeda. Se sair cara, coloque um card da sua pilha de descarte em cima do seu baralho.",
de: "Wirf 1 Münze. Lege bei „Kopf“ 1 Karte von deinem Ablagestapel auf dein Deck."
},
trainerType: "Item",
}
export default card