UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

10 lines (9 loc) 981 B
import type { Rarity } from '../../constants/reforge-types.js'; import type { Stat } from '../../constants/stats.js'; import type { EffectSummary } from '../../constants/upgrades.js'; import type { Effect } from '../../effects/types.js'; import type { EliteItemDto, GemRarity } from '../../fortune/item.js'; export declare function gemStat(item: EliteItemDto, stat: Stat, hostRarity: Rarity): number; export declare function gemEffects(item: EliteItemDto, hostRarity: Rarity, sourceName: string, multiplier?: number): Effect[]; export declare function gemSlotDeltaEffects(slot: string, hostRarity: Rarity, currentGem: GemRarity | null | undefined, nextGem: GemRarity | null | undefined, sourceName: string, multiplier?: number): Effect[]; export declare function gemSlotDeltaEffectSummaries(slot: string, hostRarity: Rarity, currentGem: GemRarity | null | undefined, nextGem: GemRarity | null | undefined, sourceName: string, stats?: Stat[], multiplier?: number): EffectSummary[];