import { Card } from '../../../interfaces' import Set from '../Fossil' const card: Card = { name: { en: "Muk", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 89, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Grimer", }, stage: "Stage1", abilities: [ { type: "Poke-POWER", name: { en: "Toxic Gas", }, effect: { en: "Ignore all Pokémon Powers other than Toxic Gases. This power stops working while Muk is Asleep, Confused, or Paralyzed.", }, }, ], attacks: [ { cost: [ "Grass", "Grass", "Grass", ], name: { en: "Sludge", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card