farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
14 lines (13 loc) • 449 B
TypeScript
import { UpgradeableInfo } from '../fortune/upgradable';
import { Crop } from './crops';
import { Rarity } from './reforges';
import { Skill } from './skills';
export interface FarmingAccessoryInfo extends UpgradeableInfo {
name: string;
wiki: string;
family?: string;
maxRarity: Rarity;
crops?: Crop[];
skillReq?: Partial<Record<Skill, number>>;
}
export declare const FARMING_ACCESSORIES_INFO: Partial<Record<string, FarmingAccessoryInfo>>;