import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Pokémon Reversal", fr: "Inversion de Pokémon", }, illustrator: "Wataru Kawahara", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Lancez une pièce. Si c’est face, choisissez un Pokémon du Banc de votre adversaire et échangez-le avec son Pokémon actif.", en: "Flip a coin. If heads, choose 1 of your opponent’s Benched Pokémon and switch it with your opponent’s Active Pokémon." }, trainerType: "Item", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, hp: 0 } export default card