import { Card } from '../../../interfaces' import Set from '../Evolutions' const card: Card = { name: { en: "Potion", fr: "Potion", }, illustrator: "Keiji Kinebuchi", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Soignez 30 dégâts à l'un de vos Pokémon.", en: "Heal 30 damage from 1 of your Pokémon." }, trainerType: "Item", } export default card