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.", }, trainerType: "Item", } export default card