import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Shauna", fr: "Sannah", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Mélangez votre main avec votre deck. Ensuite, piochez 5 cartes.", }, trainerType: "Supporter", } export default card