1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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 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 '../Team Up'
const card: Card = {
name: {
en: "Judge Whistle",
fr: "Sifflet de Juge",
es: "Silbato del Juez",
it: "Fischietto dellArbitro",
pt: "Apito do Juiz",
de: "Richterpfeife"
},
illustrator: "Ayaka Yoshida",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Choisissez lune de ces options :\n\n• Piochez une carte.\n• Placez une carte Juge de votre pile de défausse dans votre main.",
en: "Choose 1:\n\n• Draw a card.\n• Put a Judge card from your discard pile into your hand.",
es: "Elige 1 opción:\n\n• Roba 1 carta.\n• Pon 1 carta de Juez de tu pila de descartes en tu mano.",
it: "Scegli:\n\n• Pesca una carta.\n• Prendi una carta Arbitro dalla tua pila degli scarti e aggiungila alle carte che hai in mano.",
pt: "Escolha 1:\n\n• Compre 1 carta.\n• Coloque 1 carta Juiz da sua pilha de descarte na sua mão.",
de: "Wähle 1 aus:\n\n• Ziehe 1 Karte.\n• Nimm 1 Richter-Karte aus deinem Ablagestapel auf deine Hand."
},
trainerType: "Item",
}
export default card