UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

12 lines (11 loc) 492 B
import { Rarity, type Reforge } from './reforge-types.js'; import { Stat } from './stats.js'; export * from './reforge-types.js'; /** * Compatibility registry for existing callers. Reforge definitions now live as * class instances under `items/reforges/`; this export keeps the old constants * import path stable. */ export declare const REFORGES: Record<string, Reforge>; export declare const STAT_ICONS: Record<Stat, string>; export declare const RARITY_COLORS: Record<Rarity, string>;