import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/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", fr: "https://assets.tcgdex.net/fr/sm/sm11/74/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm11/74/high", fr: "https://assets.tcgdex.net/fr/sm/sm11/74/high", }, }, evolveFrom: { en: "Exeggcute", fr: "Noeunoeuf", }, tags: [ Tag.STAGE1, ], illustrator: "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