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: "bw9-5", localId: 5, // Card informations name: { en: "Exeggutor", fr: "Noadkoko", }, hp: 100, type: [ Type.GRASS, ], dexId: 103, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw9/5/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/5/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/5/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/5/high.png", }, }, evolveFrom: { en: "Exeggcute", fr: "Noeunoeuf", }, tags: [ Tag.STAGE1, ], illustrator: { id: 28, name: "match" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Blockade", fr: "Blocus", }, text: { 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: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Stomp", fr: "Écrasement", }, text: { 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: Type.FIRE, value: "×2" }], resistances: [{ type: Type.WATER, value: "-20" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Plasma Freeze", code: "bw9" } } export default card