UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

91 lines 2.37 kB
import { Rarity } from '../../constants/reforges.js'; import { Stat } from '../../constants/stats.js'; import { UpgradeReason } from '../../constants/upgrades.js'; import { BaseItem } from '../base-item.js'; import { GearSlot } from '../definitions.js'; export class PesthuntersGloves extends BaseItem { get skyblockId() { return 'PESTHUNTERS_GLOVES'; } get name() { return "Pesthunter's Gloves"; } get wiki() { return 'https://w.elitesb.gg/Pesthunter%27s_Gloves'; } get maxRarity() { return Rarity.Epic; } family = 'PESTHUNTERS'; slot = GearSlot.Gloves; baseStats = { [Stat.BonusPestChance]: 5, [Stat.PestCooldownReduction]: 10, }; } export class PesthuntersBelt extends BaseItem { get skyblockId() { return 'PESTHUNTERS_BELT'; } get name() { return "Pesthunter's Belt"; } get wiki() { return 'https://w.elitesb.gg/Pesthunter%27s_Belt'; } get maxRarity() { return Rarity.Epic; } family = 'PESTHUNTERS'; slot = GearSlot.Belt; baseStats = { [Stat.BonusPestChance]: 5, [Stat.PestCooldownReduction]: 10, }; } export class PesthuntersNecklace extends BaseItem { get skyblockId() { return 'PESTHUNTERS_NECKLACE'; } get name() { return "Pesthunter's Necklace"; } get wiki() { return 'https://w.elitesb.gg/Pesthunter%27s_Necklace'; } get maxRarity() { return Rarity.Epic; } family = 'PESTHUNTERS'; slot = GearSlot.Necklace; baseStats = { [Stat.BonusPestChance]: 5, [Stat.PestCooldownReduction]: 10, }; } export class PesthuntersCloak extends BaseItem { get skyblockId() { return 'PESTHUNTERS_CLOAK'; } get name() { return "Pesthunter's Cloak"; } get wiki() { return 'https://w.elitesb.gg/Pesthunter%27s_Cloak'; } get maxRarity() { return Rarity.Epic; } family = 'PESTHUNTERS'; slot = GearSlot.Cloak; baseStats = { [Stat.BonusPestChance]: 5, [Stat.PestCooldownReduction]: 10, }; upgrade = { id: 'PEST_VEST', reason: UpgradeReason.NextTier, why: 'The Pest Vest provides more fortune and a higher bonus pest chance.', }; } //# sourceMappingURL=pesthunter.js.map