farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
24 lines • 790 B
JavaScript
import { Crop } from './crops.js';
export function fortuneFromPersonalBestContest(crop, personalBest) {
const cropsPerTier = PERSONAL_BESTS_CROPS_PER_TIER[crop];
const tiers = Math.floor(personalBest / cropsPerTier);
return Math.min(tiers * PERSONAL_BEST_FORTUNE_PER_TIER, 100);
}
export const PERSONAL_BEST_FORTUNE_PER_TIER = 0.01;
export const PERSONAL_BESTS_CROPS_PER_TIER = {
[]: 100,
[]: 300,
[]: 300,
[]: 100,
[]: 500,
[]: 100,
[]: 200,
[]: 200,
[]: 300,
[]: 300,
[]: 0,
[]: 200,
[]: 200,
[]: 200,
};
//# sourceMappingURL=personalbests.js.map