import { Card } from '../../../interfaces' import Set from '../Evolutions' const card: Card = { name: { en: "Professor Oak's Hint", fr: "Indice du Prof. Chen", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Piochez des cartes jusqu'à ce que vous ayez 7 cartes en main. Votre tour se termine.", }, trainerType: "Supporter", } export default card