farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
58 lines (57 loc) • 1.54 kB
TypeScript
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 PesthuntersGloves extends BaseItem {
get skyblockId(): string;
get name(): string;
get wiki(): string;
get maxRarity(): Rarity;
family: string;
slot: GearSlot;
baseStats: {
"Bonus Pest Chance": number;
"Pest Cooldown Reduction": number;
};
}
export declare class PesthuntersBelt extends BaseItem {
get skyblockId(): string;
get name(): string;
get wiki(): string;
get maxRarity(): Rarity;
family: string;
slot: GearSlot;
baseStats: {
"Bonus Pest Chance": number;
"Pest Cooldown Reduction": number;
};
}
export declare class PesthuntersNecklace extends BaseItem {
get skyblockId(): string;
get name(): string;
get wiki(): string;
get maxRarity(): Rarity;
family: string;
slot: GearSlot;
baseStats: {
"Bonus Pest Chance": number;
"Pest Cooldown Reduction": number;
};
}
export declare class PesthuntersCloak extends BaseItem {
get skyblockId(): string;
get name(): string;
get wiki(): string;
get maxRarity(): Rarity;
family: string;
slot: GearSlot;
baseStats: {
"Bonus Pest Chance": number;
"Pest Cooldown Reduction": number;
};
upgrade: {
id: string;
reason: UpgradeReason;
why: string;
};
}