import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Fisherman", fr: "Pêcheur", }, illustrator: "Kanako Eo", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Vous ne pouvez jouer qu’une carte Supporter à chaque tour. Lorsque vous jouez cette carte, placez-la près de votre Pokémon actif. Une fois votre tour terminé, défaussez-vous de cette carte.", en: "Search your discard pile for 4 basic Energy cards, show them to your opponent, and put them into your hand." }, trainerType: "Supporter", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, hp: 0 } export default card