farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
6 lines (5 loc) • 419 B
TypeScript
import { Crop } from '../constants/crops.js';
import { FarmingEnchant } from '../constants/enchants.js';
import { PlayerOptions } from '../player/playeroptions.js';
export declare function getFortuneFromEnchant(level: number, enchant: FarmingEnchant, options?: PlayerOptions, crop?: Crop): number;
export declare function getMaxFortuneFromEnchant(enchant: FarmingEnchant, options?: PlayerOptions, crop?: Crop): number;