farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
10 lines (9 loc) • 356 B
TypeScript
import type { GemSlotCost, GemSlotRequirement } from '../../fortune/upgradeable.js';
export type ToolGemSlot = {
slot_type: string;
costs: GemSlotCost[];
requirements?: GemSlotRequirement[];
};
export declare const T1_TOOL_GEMS: ToolGemSlot[];
export declare const T2_TOOL_GEMS: ToolGemSlot[];
export declare const T3_TOOL_GEMS: ToolGemSlot[];