import { Card } from '../../../interfaces' import Set from '../Plasma Freeze' const card: Card = { name: { en: "Exeggutor", fr: "Noadkoko", }, illustrator: "match", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 103, ], hp: 100, types: [ "Grass", ], evolveFrom: { en: "Exeggcute", fr: "Noeunoeuf", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Blockade", fr: "Blocus", }, effect: { en: "Your opponent can't play any Supporter cards from his or her hand during his or her next turn.", fr: "Votre adversaire ne peut pas jouer de cartes Supporter de sa main pendant son prochain tour.", }, damage: 10, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Stomp", fr: "Écrasement", }, effect: { en: "Flip a coin. If heads, this attack does 30 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.", }, damage: 60, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Water", value: "-20" }, ], retreat: 2, } export default card