farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
7 lines (6 loc) • 385 B
TypeScript
import { Crop } from '../constants/crops.js';
import { FarmingToolType, type ItemDefinition } from './definitions.js';
export { FarmingToolType, type ItemDefinition as FarmingToolInfo };
type FarmingToolInfo = ItemDefinition;
export declare const FARMING_TOOLS: Partial<Record<string, FarmingToolInfo>>;
export declare const BEST_FARMING_TOOLS: Partial<Record<Crop, FarmingToolInfo>>;