import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "sm11-74", localId: 74, // Card informations name: { en: "Exeggutor", fr: "Noadkoko", }, hp: 140, type: [ Type.PSYCHIC, ], dexId: 103, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm11/74/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm11/74/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm11/74/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm11/74/high.png", }, }, evolveFrom: { en: "Exeggcute", fr: "Noeunoeuf", }, tags: [ Tag.STAGE1, ], illustrator: { id: 95, name: "kirisAki" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Mind Bend", fr: "Contrôleur d’Esprit", }, text: { en: "Your opponent's Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, damage: 30 },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Full Clean", fr: "Nettoyage Complet", }, text: { en: "Discard your hand.", fr: "Défaussez votre main.", }, damage: 180 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 3, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Unified Minds", code: "sm11" } } export default card