UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

52 lines 1.47 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 ZorrosCape extends BaseItem { get skyblockId() { return 'ZORROS_CAPE'; } get name() { return "Zorro's Cape"; } get wiki() { return 'https://w.elitesb.gg/Zorro%27s_Cape'; } get maxRarity() { return Rarity.Mythic; } slot = GearSlot.Cloak; baseStats = { [Stat.FarmingFortune]: 10, [Stat.FarmingWisdom]: 1, [Stat.Strength]: 10, [Stat.Ferocity]: 2, }; contestStatsMultiplier = 2; upgrade = { id: 'LOTUS_CLOAK', reason: UpgradeReason.Situational, why: "A maxed Lotus Cloak provides slightly more fortune outside of a Jacob's contest, but significantly less fortune during one compared to a maxed Zorro's Cape.", }; } export class PestVest extends BaseItem { get skyblockId() { return 'PEST_VEST'; } get name() { return 'Pest Vest'; } get wiki() { return 'https://w.elitesb.gg/Pest_Vest'; } get maxRarity() { return Rarity.Legendary; } slot = GearSlot.Cloak; baseStats = { [Stat.BonusPestChance]: 10, [Stat.PestCooldownReduction]: 15, }; } //# sourceMappingURL=special.js.map