mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
42 lines
912 B
TypeScript
42 lines
912 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../BREAKthrough'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Judge",
|
|
fr: "Juge",
|
|
es: "Juez",
|
|
it: "Arbitro",
|
|
pt: "Juiz",
|
|
de: "Richter"
|
|
},
|
|
illustrator: "Megumi Mizutani",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Chaque joueur mélange sa main avec son deck, puis pioche 4 cartes.",
|
|
en: "Each player shuffles his or her hand into his or her deck and draws 4 cards.",
|
|
es: "Los jugadores ponen las cartas de su mano en su baraja y las barajan todas. Después, cada jugador roba 4 cartas.",
|
|
it: "Ciascun giocatore rimischia le carte che ha in mano nel proprio mazzo e poi pesca quattro carte.",
|
|
pt: "Cada jogador embaralha sua mão em seu baralho e compra 4 cards.",
|
|
de: "Jeder Spieler mischt seine Handkarten in sein Deck und zieht 4 Karten."
|
|
},
|
|
trainerType: "Supporter",
|
|
|
|
}
|
|
|
|
export default card
|