import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Emcee’s Chatter", fr: "Bavardage du maître", }, illustrator: "Kouki Saitou", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Lancez une pièce. Si c’est face, piochez 3 cartes. Si c’est pile, piochez 2 cartes.", en: "Flip a coin. If heads, draw 3 cards. If tails, draw 2 cards." }, trainerType: "Supporter", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, hp: 0 } export default card