import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Poké Ball", fr: "Poké Ball", }, illustrator: "Hideaki Hakozaki", 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 à votre adversaire, puis ajoutez-le à votre main. Mélangez ensuite votre deck.", en: "Flip a coin. If heads, search your deck for a Pokémon, show it to your opponent, and put it into your hand. Shuffle your deck afterward." }, trainerType: "Item", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, hp: 0 } export default card