import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Judge", fr: "Juge", }, 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." }, trainerType: "Supporter", } export default card