UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

17 lines (16 loc) 549 B
import { UpgradeableInfo } from '../fortune/upgradable'; import { Crop } from './crops'; import { ReforgeTarget } from './reforges'; export declare enum FarmingToolType { Other = 'Other', Dicer = 'Dicer', MathematicalHoe = 'Mathematical Hoe', } export interface FarmingToolInfo extends UpgradeableInfo { crop: Crop; name: string; type: FarmingToolType; reforgeType: ReforgeTarget; } export declare const FARMING_TOOLS: Partial<Record<string, FarmingToolInfo>>; export declare const BEST_FARMING_TOOLS: Partial<Record<Crop, FarmingToolInfo>>;