1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

33 lines
383 B
TypeScript

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.",
},
trainerType: "Supporter",
}
export default card