import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Lucky Egg", }, illustrator: "Nobuyuki Fujimoto", rarity: "Uncommon", category: "Trainer", set: Set, effect: { en: "Attach Lucky Egg to 1 of your Pokémon that doesn't already have a Pokémon Tool attached to it. If\nthat Pokémon is Knocked Out, discard this card.", }, trainerType: "Tool", } export default card