import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Poké Ball", fr: "Poké Ball", }, illustrator: "5ban Graphics", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Lancez une pièce. Si c'est face, cherchez un Pokémon dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.", }, trainerType: "Item", } export default card