1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

42 lines
1.4 KiB
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 '../Fates Collide'
const card: Card = {
name: {
en: "Random Receiver",
fr: "Récepteur Aléatoire",
es: "Receptor Aleatorio",
it: "Destinatario Casuale",
pt: "Receptor Aleatório",
de: "Zufallsempfänger"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Montrez des cartes du dessus de votre deck jusquà ce que vous montriez une carte Supporter. Ajoutez-la à votre main. Mélangez les autres cartes avec votre deck.",
en: "Reveal cards from the top of your deck until you reveal a Supporter card. Put it into your hand. Shuffle the other cards back into your deck.",
es: "Ve enseñando cartas de la parte superior de tu baraja hasta que enseñes 1 carta de Partidario. Ponla en tu mano. Pon el resto de cartas de nuevo en tu baraja y barájalas todas.",
it: "Scopri le carte in cima al tuo mazzo fino a quando non trovi una carta Aiuto. Aggiungila a quelle che hai in mano, poi rimischia le altre carte nel tuo mazzo.",
pt: "Revele os cards de cima do seu baralho até revelar um card de Apoiador. Coloque-o em sua mão. Embaralhe os demais cards de volta.",
de: "Decke solang Karten von deinem Deck auf, bis du eine Unterstützerkarte aufdeckst. Nimm sie auf deine Hand. Mische die anderen Karten zurück in dein Deck."
},
trainerType: "Item",
}
export default card