import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Red Card", fr: "Carton Rouge", }, illustrator: "5ban Graphics", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Votre adversaire mélange sa main avec son deck et pioche 4 cartes.", }, trainerType: "Item", } export default card