UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

14 lines 522 B
import { MATCHING_SPECIAL_CROP, SPECIAL_CROP_INFO } from '../constants/specialcrops.js'; export function calculateAverageSpecialCrops(blocksBroken, crop, armor, multiplier = 1) { const type = MATCHING_SPECIAL_CROP[crop]; const { rates, npc, id } = SPECIAL_CROP_INFO[type]; const chance = rates[armor - 1] ?? 0; const amount = blocksBroken * chance * multiplier; return { id: id, type: type, amount: amount, npc: npc * amount, }; } //# sourceMappingURL=special.js.map