UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

35 lines (34 loc) 940 B
import { Rarity } from '../../constants/reforges.js'; import { UpgradeReason } from '../../constants/upgrades.js'; import { BaseItem } from '../base-item.js'; import { GearSlot } from '../definitions.js'; export declare class ZorrosCape extends BaseItem { get skyblockId(): string; get name(): string; get wiki(): string; get maxRarity(): Rarity; slot: GearSlot; baseStats: { farming_fortune: number; "Farming Wisdom": number; Strength: number; Ferocity: number; }; contestStatsMultiplier: number; upgrade: { id: string; reason: UpgradeReason; why: string; }; } export declare class PestVest extends BaseItem { get skyblockId(): string; get name(): string; get wiki(): string; get maxRarity(): Rarity; slot: GearSlot; baseStats: { "Bonus Pest Chance": number; "Pest Cooldown Reduction": number; }; }