import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Skyla", fr: "Carolina", }, illustrator: "Yusuke Ohmura", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Cherchez une carte Dresseur dans votre deck, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.", en: "Search your deck for a Trainer card, reveal it, and put it into your hand. Shuffle your deck afterward." }, trainerType: "Supporter", } export default card