UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

10 lines 433 B
import { REFORGE_SOURCES } from '../reforges/index.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 function reforgeEffects(reforgeId, rarity, sourceName) { return REFORGE_SOURCES[reforgeId]?.getEffects(rarity, sourceName) ?? []; } //# sourceMappingURL=reforges.js.map