UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

15 lines (14 loc) 539 B
import { Crop } from '../constants/crops.js'; import { Rarity } from '../constants/reforges.js'; import { Skill } from '../constants/skills.js'; import { UpgradeableInfo } from '../fortune/upgradeable.js'; export interface FarmingAccessoryInfo extends UpgradeableInfo { name: string; wiki: string; family?: string; familyOrder?: number; maxRarity: Rarity; crops?: Crop[]; skillReq?: Partial<Record<Skill, number>>; } export declare const FARMING_ACCESSORIES_INFO: Partial<Record<string, FarmingAccessoryInfo>>;