/** * @returns Whether we `have` the Jung Man */ export declare function have(): boolean; export declare enum Jar { SUSPICIOUS_GUY = "susguy", GOURD_CAPTAIN = "gourdcaptain", CRACKPOT_MYSTIC = "mystic", OLD_MAN = "oldman", PRETENTIOUS_ARTIST = "artist", MEATSMITH = "meatsmith", JICK = "jick" } export declare const JAR_ITEMS: { susguy: import("kolmafia").Item; gourdcaptain: import("kolmafia").Item; mystic: import("kolmafia").Item; oldman: import("kolmafia").Item; artist: import("kolmafia").Item; meatsmith: import("kolmafia").Item; jick: import("kolmafia").Item; }; /** * @returns Whether we can currently make a Jick jar */ export declare function canJickJar(): boolean; /** * Tries to make a psychoanalytic jar with the chosen target * * @param jar The character of Loathing to psychoanalyze * @returns Whether we successfully crafted the jar */ export declare function makeJar(jar: Jar): boolean;