UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

12 lines (11 loc) 378 B
import { Crop } from './crops.js'; import { Rarity } from './reforges.js'; export declare const GARDEN_EXP_REQUIRED: number[]; export declare const CROP_MILESTONES: Record<Crop, number[]>; export interface GardenVisitor { name: string; short?: string; rarity: Rarity; wiki: string; } export declare const GARDEN_VISITORS: Partial<Record<string, GardenVisitor>>;