farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
14 lines (13 loc) • 895 B
TypeScript
import { Crop } from '../constants/crops.js';
import { type Rarity } from '../constants/reforges.js';
import { SpecialCrop } from '../constants/specialcrops.js';
import { ComposterUpgrade } from '../features/composter/composter.js';
export declare function getCropDisplayName(crop?: Crop | null): string;
export declare function getSpecialCropDisplayName(crop: SpecialCrop): string;
export declare function getComposterUpgradeDisplayName(upgrade: ComposterUpgrade): string;
export declare function getCropFromName(name: string): Crop | undefined;
export declare function getCropFromItemId(itemId: string): Crop | undefined;
export declare function getCropFromContestKey(contestKey: string): Crop | undefined;
export declare function getItemIdFromCrop(crop: Crop): string;
export declare function getRarityColor(rarity: Rarity): string;
export declare const cropToFullName: Record<Crop, string>;