farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
9 lines (8 loc) • 422 B
TypeScript
import type { Rarity } from '../../constants/reforge-types.js';
import type { Effect } from '../../effects/types.js';
/**
* Compatibility helper for callers that only need the effects for a reforge id
* at a host item rarity. Reforge behavior now lives on the class-backed
* registry under `items/reforges/`.
*/
export declare function reforgeEffects(reforgeId: string, rarity: Rarity, sourceName?: string): Effect[];