import { Card } from '../../../interfaces' import Set from '../Evolutions' const card: Card = { name: { en: "Super Potion", fr: "Super Potion", }, illustrator: "Keiji Kinebuchi", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Soignez 60 dégâts à l’un de vos Pokémon. Dans ce cas, défaussez une Énergie attachée au Pokémon choisi.", en: "Heal 60 damage from 1 of your Pokémon. If you do, discard an Energy attached to that Pokémon." }, trainerType: "Item", } export default card