import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Energy Restore", }, illustrator: "Ryo Ueda", rarity: "Uncommon", category: "Trainer", set: Set, effect: { en: "Flip 3 coins. For each heads, put a basic Energy card from your discard pile into your hand. If you don't have that many basic Energy cards in your discard pile, put all of them into your hand.", }, trainerType: "Item", } export default card