farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
124 lines • 3.03 kB
JavaScript
export var Crop;
(function (Crop) {
Crop["Cactus"] = "CACTUS";
Crop["Carrot"] = "CARROT_ITEM";
Crop["CocoaBeans"] = "INK_SACK:3";
Crop["Melon"] = "MELON";
Crop["Mushroom"] = "MUSHROOM_COLLECTION";
Crop["NetherWart"] = "NETHER_STALK";
Crop["Potato"] = "POTATO_ITEM";
Crop["Pumpkin"] = "PUMPKIN";
Crop["SugarCane"] = "SUGAR_CANE";
Crop["Wheat"] = "WHEAT";
Crop["Seeds"] = "WHEAT_SEEDS";
})(Crop || (Crop = {}));
export const CROP_INFO = {
[]: {
name: 'Cactus',
npc: 4,
drops: 2,
breaks: 2,
startingTool: 'CACTUS_KNIFE',
},
[]: {
name: 'Carrot',
npc: 3,
drops: 3,
replenish: true,
exportable: true,
startingTool: 'THEORETICAL_HOE_CARROT_1',
},
[]: {
name: 'Cocoa Beans',
npc: 3,
drops: 3,
replenish: true,
exportable: true,
startingTool: 'COCO_CHOPPER',
},
[]: {
name: 'Melon',
npc: 2,
drops: 5,
startingTool: 'MELON_DICER',
},
[]: {
name: 'Mushroom',
npc: 10,
drops: 1,
exportable: true,
startingTool: 'FUNGI_CUTTER',
},
[]: {
name: 'Nether Wart',
npc: 4,
drops: 2.5,
replenish: true,
startingTool: 'THEORETICAL_HOE_WARTS_1',
},
[]: {
name: 'Potato',
npc: 3,
drops: 3,
replenish: true,
startingTool: 'THEORETICAL_HOE_POTATO_1',
},
[]: {
name: 'Pumpkin',
npc: 10,
drops: 1,
exportable: true,
startingTool: 'PUMPKIN_DICER',
},
[]: {
name: 'Sugar Cane',
npc: 4,
drops: 2,
breaks: 2,
startingTool: 'THEORETICAL_HOE_CANE_1',
},
[]: {
name: 'Wheat',
npc: 6,
drops: 1,
exportable: true,
startingTool: 'THEORETICAL_HOE_WHEAT_1',
},
[]: {
name: 'Seeds',
npc: 3,
drops: 1.5,
replenish: true,
startingTool: 'THEORETICAL_HOE_WHEAT_1',
},
};
// TODO: Calculate this from a list of sources
// Base plus pb fortune
export const MAX_CROP_FORTUNE = {
[]: 1778,
[]: 2013,
[]: 1842,
[]: 1809,
[]: 1813,
[]: 1991,
[]: 2001,
[]: 1821,
[]: 2001,
[]: 2053,
[]: 2053, // Not a crop, same as wheat
};
export const LIST_OF_CROPS = [
Crop.Cactus,
Crop.Carrot,
Crop.CocoaBeans,
Crop.Melon,
Crop.Mushroom,
Crop.NetherWart,
Crop.Potato,
Crop.Pumpkin,
Crop.SugarCane,
Crop.Wheat,
];
export const LIST_OF_CROPS_WITH_SEEDS = [...LIST_OF_CROPS, Crop.Seeds];
export const EXPORTABLE_CROP_FORTUNE = 12;
//# sourceMappingURL=crops.js.map