1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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
886 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.

import { Card } from '../../../interfaces'
import Set from '../Forbidden Light'
const card: Card = {
name: {
en: "Judge",
fr: "Juge",
es: "Juez",
it: "Arbitro",
pt: "Juiz",
de: "Richter"
},
illustrator: "Sanosuke Sakuma",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Chaque joueur mélange sa main avec son deck et pioche 4 cartes.",
en: "Each player shuffles their hand into their deck and draws 4 cards.",
es: "Cada jugador pone las cartas de su mano en su baraja, las baraja todas y roba 4 cartas.",
it: "Ciascun giocatore rimischia le carte che ha in mano nel proprio mazzo e pesca quattro carte.",
pt: "Cada jogador embaralha a própria mão no próprio baralho e compra 4 cartas.",
de: "Jeder Spieler mischt seine Handkarten in sein Deck und zieht 4 Karten."
},
trainerType: "Supporter",
}
export default card