import { Card } from '../../../interfaces' import Set from '../Flashfire' const card: Card = { name: { en: "Lysandre", fr: "Lysandre", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Échangez l’un des Pokémon de Banc de votre adversaire avec son Pokémon Actif.", en: "Switch 1 of your opponent’s Benched Pokémon with his or her Active Pokémon." }, trainerType: "Supporter", } export default card