import { Card } from '../../../interfaces' import Set from '../Evolutions' const card: Card = { name: { en: "Devolution Spray", fr: "Spray Dés-Évoluant", }, illustrator: "Keiji Kinebuchi", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Faites dés-évoluer l’un de vos Pokémon évolués et mettez sa carte Évolution de plus haut Niveau dans votre main. (Le Pokémon choisi ne peut pas évoluer pendant ce tour.)", en: "Devolve 1 of your evolved Pokémon and put the highest Stage Evolution card on it into your hand. (That Pokémon can’t evolve this turn.)" }, trainerType: "Item", } export default card