import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Exeggcute", fr: "Noeunoeuf", es: "Exeggcute", it: "Exeggcute", de: "Owei", 'pt-br': "Exeggcute", ko: "아라리" }, illustrator: "kawayoo", category: "Pokemon", hp: 50, types: ["Grass"], stage: "Basic", attacks: [{ cost: ["Grass"], name: { en: "Seed Bomb", fr: "Canon Graine", es: "Bomba Germen", it: "Semebomba", de: "Samenbomben", 'pt-br': "Bomba de Sementes", ko: "씨폭탄" }, damage: "20" }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1, rarity: "One Diamond", 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.", fr: "Même s'il ressemble à un tas d'œufs,\nil s'agit bien d'un Pokémon. Il paraît qu'ils\ncommuniquent entre eux par télépathie.", es: "Pese a su aspecto de mera piña de huevos,\nse trata de un Pokémon. Al parecer, sus\ncabezas se comunican entre sí por telepatía.", it: "Somiglia a un mucchio di uova, ma è\nun Pokémon a tutti gli effetti. Pare che\ncomunichi con i suoi simili telepaticamente.", de: "Owei mag zwar Eiern ähneln, ist aber ein echtes\nPokémon, das aus sechs Individuen besteht, die\nwohl telepathisch miteinander kommunizieren.", 'pt-br': "Apesar de parecer só um monte de ovos, é um Pokémon\nde verdade. Exeggcute se comunica com outros de sua\nespécie por meio de telepatia.", ko: "알처럼 보이지만 엄연한\n포켓몬이다. 텔레파시로\n동료와 교신하는 듯하다." }, boosters: ["charizard"] } export default card