farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
8 lines (7 loc) • 454 B
TypeScript
import { Stat } from '../constants/stats.js';
import { type FortuneUpgrade } from '../constants/upgrades.js';
import type { Upgradeable } from '../fortune/upgradeable.js';
export declare function getUpgradeableEnchants(upgradeable: Upgradeable, stat?: Stat): FortuneUpgrade[];
export declare function getUpgradeableEnchant(upgradeable: Upgradeable, enchantId: string, stat?: Stat, options?: {
includeWhenNoStatImpact?: boolean;
}): FortuneUpgrade[];