import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Exeggcute" }, illustrator: "HYOGONOSUKE", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Grass"], description: { en: "Though it may look like it's just a bunch of eggs, it's a proper Pokémon. Exeggcute communicates with others of its kind via telepathy, apparently." }, stage: "Basic", attacks: [{ name: { en: "Rolling Tackle" }, damage: 30, cost: ["Grass", "Colorless"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card