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.", en: "Draw cards until you have 7 cards in your hand. Your turn ends." }, trainerType: "Supporter", } export default card