farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
66 lines • 2.12 kB
JavaScript
import { REFORGE_SOURCES } from '../items/reforges/index.js';
import { Rarity } 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 const REFORGES = REFORGE_SOURCES;
export const STAT_ICONS = {
[]: '☂',
[]: '❁',
[]: '❤',
[]: '❈',
[]: '✦',
[]: '✎',
[]: '☣',
[]: '☣',
[]: '⚔',
[]: '๑',
[]: '✯',
[]: '♣',
[]: '❂',
[]: 'α',
[]: '⫽',
[]: '⸕',
[]: '☘',
[]: '☘',
[]: '☘',
[]: '☯',
[]: '☯',
[]: '☯',
[]: '✧',
[]: 'ൠ',
[]: '☀',
[]: '☘',
[]: '☘',
[]: '☘',
[]: '☘',
[]: '☘',
[]: '☘',
[]: '☘',
[]: '☘',
[]: '☘',
[]: '☘',
[]: '☘',
[]: 'ൠ',
[]: '☘',
[]: '☘',
[]: '☘',
};
export const RARITY_COLORS = {
[]: '§f',
[]: '§a',
[]: '§9',
[]: '§5',
[]: '§6',
[]: '§d',
[]: '§b',
[]: '§c',
[]: '§c',
[]: '§4',
[]: '§4',
};
//# sourceMappingURL=reforges.js.map