farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
13 lines • 473 B
JavaScript
import { MATCHING_SPECIAL_CROP, SPECIAL_CROP_INFO } from '../constants/specialcrops.js';
export function calculateAverageSpecialCrops(blocksBroken, crop, armor) {
const type = MATCHING_SPECIAL_CROP[crop];
const { rates, npc } = SPECIAL_CROP_INFO[type];
const chance = rates[armor - 1] ?? 0;
const amount = blocksBroken * chance;
return {
type: type,
amount: amount,
npc: npc * amount,
};
}
//# sourceMappingURL=special.js.map