farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
40 lines • 1.22 kB
JavaScript
export var Rarity;
(function (Rarity) {
Rarity["Common"] = "Common";
Rarity["Uncommon"] = "Uncommon";
Rarity["Rare"] = "Rare";
Rarity["Epic"] = "Epic";
Rarity["Legendary"] = "Legendary";
Rarity["Mythic"] = "Mythic";
Rarity["Divine"] = "Divine";
Rarity["Special"] = "Special";
Rarity["VerySpecial"] = "Very Special";
Rarity["Ultimate"] = "Ultimate";
Rarity["Admin"] = "Admin";
})(Rarity || (Rarity = {}));
export const RARITY_VALUES = {
[]: 1,
[]: 2,
[]: 3,
[]: 4,
[]: 5,
[]: 6,
[]: 7,
[]: 8,
[]: 9,
[]: 10,
[]: 11,
};
export function compareRarity(a, b) {
return RARITY_VALUES[a] - RARITY_VALUES[b];
}
export var ReforgeTarget;
(function (ReforgeTarget) {
ReforgeTarget["FarmingTool"] = "Farming Tool";
ReforgeTarget["Hoe"] = "Hoe";
ReforgeTarget["Axe"] = "Axe";
ReforgeTarget["Armor"] = "Armor";
ReforgeTarget["Equipment"] = "Equipment";
ReforgeTarget["Sword"] = "Sword";
})(ReforgeTarget || (ReforgeTarget = {}));
//# sourceMappingURL=reforge-types.js.map