farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
10 lines (9 loc) • 675 B
TypeScript
import type { Rarity } from '../constants/reforges.js';
import { Stat } from '../constants/stats.js';
import { type EliteItemDto, GemRarity } from '../fortune/item.js';
export declare function getPeridotFortune(rarity: Rarity, item: EliteItemDto): number;
export declare function getGemStat(item: EliteItemDto, stat: Stat, rarity: Rarity): number;
export declare function getPeridotGems(item: EliteItemDto): (GemRarity | null)[];
export declare function getPeridotGemFortune(rarity: Rarity, gem: GemRarity | null): number;
export declare function getNextGemRarity(gem: GemRarity | null): GemRarity;
export declare function getGemRarityName(rarity: GemRarity | null): string;