farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
94 lines (93 loc) • 2.12 kB
TypeScript
import { Rarity } from '../../constants/reforges.js';
import { UpgradeReason } from '../../constants/upgrades.js';
import type { GemSlotCost } from '../../fortune/upgradeable.js';
import { BaseItem } from '../base-item.js';
import { GearSlot } from '../definitions.js';
export declare class RabbitHelmet extends BaseItem {
get skyblockId(): string;
get name(): string;
get wiki(): string;
get maxRarity(): Rarity;
family: string;
slot: GearSlot;
gemSlots: {
slot_type: string;
costs: GemSlotCost[];
}[];
upgrade: {
id: string;
reason: UpgradeReason;
};
baseStats: {
farming_fortune: number;
};
skillReq: {
Farming: number;
};
}
export declare class RabbitChestplate extends BaseItem {
get skyblockId(): string;
get name(): string;
get wiki(): string;
get maxRarity(): Rarity;
family: string;
slot: GearSlot;
gemSlots: {
slot_type: string;
costs: GemSlotCost[];
}[];
upgrade: {
id: string;
reason: UpgradeReason;
};
baseStats: {
farming_fortune: number;
};
skillReq: {
Farming: number;
};
}
export declare class RabbitLeggings extends BaseItem {
get skyblockId(): string;
get name(): string;
get wiki(): string;
get maxRarity(): Rarity;
family: string;
slot: GearSlot;
gemSlots: {
slot_type: string;
costs: GemSlotCost[];
}[];
upgrade: {
id: string;
reason: UpgradeReason;
};
baseStats: {
farming_fortune: number;
};
skillReq: {
Farming: number;
};
}
export declare class RabbitBoots extends BaseItem {
get skyblockId(): string;
get name(): string;
get wiki(): string;
get maxRarity(): Rarity;
family: string;
slot: GearSlot;
gemSlots: {
slot_type: string;
costs: GemSlotCost[];
}[];
upgrade: {
id: string;
reason: UpgradeReason;
};
baseStats: {
farming_fortune: number;
};
skillReq: {
Farming: number;
};
}