farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
17 lines • 591 B
JavaScript
const SET_TRANSITION_WARNING = 'Partial upgrades can reduce the active armor set tier.';
export function armorTierGroup(from, to) {
return {
id: `armor-tier:${from.toUpperCase()}:${to.toUpperCase()}`,
label: `Upgrade ${titleCase(from)} Armor to ${titleCase(to)} Armor`,
strategy: 'available-pieces',
warning: SET_TRANSITION_WARNING,
};
}
function titleCase(value) {
return value
.toLowerCase()
.split('_')
.map((part) => part.charAt(0).toUpperCase() + part.slice(1))
.join(' ');
}
//# sourceMappingURL=groups.js.map