import { Card } from '../../../interfaces' import Set from '../Evolutions' const card: Card = { name: { en: "Pokédex", fr: "Pokédex", }, illustrator: "Keiji Kinebuchi", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Regardez les 5 cartes du dessus de votre deck et replacez-les dans l’ordre de votre choix.", en: "Look at the top 5 cards of your deck and put them back in any order." }, trainerType: "Item", } export default card