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: "ex3-96", localId: 96, // Card informations name: { en: "Muk ex", }, hp: 100, type: [ Type.GRASS, ], dexId: 89, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex3/96/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex3/96/high.png", }, }, evolveFrom: { en: "Grimer", }, tags: [ Tag.EX, ], illustrator: { id: 74, name: "Hikaru Koike" }, abilities: [{ id: 257, type: AbilityType.POKEBODY, name: { en: "Toxic Gas", }, text: { en: "As long as Muk ex is your Active Pokémon, ignore all Poké-Powers and Poké-Bodies other than Toxic Gas.", } }], attacks: [{ cost: [ Type.GRASS ], name: { en: "Poison Breath", }, text: { en: "The Defending Pokémon is now Poisoned.", }, damage: 10 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS ], name: { en: "Slimy Water", }, text: { en: "Does 40 damage plus 10 more damage for each Colorless Energy in the Defending Pokémon's Retreat Cost (after applying effects to the Retreat Cost).", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Dragon", code: "ex3" } } export default card