import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Exeggcute", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 102, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Growth Spurt", }, effect: { en: "Attach an Energy card from your hand to Exeggcute.", }, }, { cost: [ "Grass", ], name: { en: "Sleep Powder", }, effect: { en: "The Defending Pokémon is now Asleep.", }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card