/** * @returns whether the player has the Pair of Stomping Boots in their terrarium */ export declare function have(): boolean; /** * @returns number of free runaways that have already been used today * @see Bandersnatch with which the Stomping Boots shares a counter */ export declare function getRunaways(): number; /** * @param considerWeightAdjustment Include familiar weight modifiers * @returns total number of free runaways that the player can get from their Stomping Boots */ export declare function getMaxRunaways(considerWeightAdjustment?: boolean): number; /** * @param considerWeightAdjustment Whether to consider weight adjustment in free run calculation * @returns the number of remaining free runaways the player can get from their Stomping Boots */ export declare function getRemainingRunaways(considerWeightAdjustment?: boolean): number; /** * @param considerWeightAdjustment Include familiar weight modifiers * @returns whether the player could use their Stomping Boots to get a free run in theory */ export declare function couldRunaway(considerWeightAdjustment?: boolean): boolean; /** * @returns whether the player can use their Stomping Boots to get a free run right now */ export declare function canRunaway(): boolean; /** * Prepare a Stomping Boots runaway. * * This will take your Stomping Boots with you. * If any of those steps fail, it will return false. * * @returns Success */ export declare function prepareRunaway(): boolean;