farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
40 lines • 1.05 kB
JavaScript
import { Crop } from './crops.js';
// https://api.elitebot.dev/weights
export const CROP_WEIGHT = {
[]: 178730.65,
[]: 300000,
[]: 276733.75,
[]: 488435.88,
[]: 90944.27,
[]: 248606.81,
[]: 298328.17,
[]: 99236.12,
[]: 198885.45,
[]: 100000,
[]: 0, // Byproduct of wheat farming, not counted
};
export const TIER_12_MINIONS = [
'WHEAT_12',
'CARROT_12',
'POTATO_12',
'PUMPKIN_12',
'MELON_12',
'MUSHROOM_12',
'COCOA_12',
'CACTUS_12',
'SUGAR_CANE_12',
'NETHER_WARTS_12',
];
export const BONUS_WEIGHT = {
Farming60Bonus: 250,
Farming50Bonus: 100,
AnitaBuffBonusMultiplier: 2,
GoldMedalRewardInterval: 50,
MinionRewardTier: 12,
MinionRewardWeight: 5,
MaxMedalsCounted: 1000,
WeightPerDiamondMedal: 0.75,
WeightPerPlatinumMedal: 0.5,
WeightPerGoldMedal: 0.25,
};
//# sourceMappingURL=weight.js.map