13 lines
709 B
TypeScript
Executable File
13 lines
709 B
TypeScript
Executable File
// ─── Computed Stats and Utility Functions ───────────────────────────────────────
|
|
// This module now re-exports from focused utility modules for better organization
|
|
//
|
|
// The functions have been split into:
|
|
// - ./utils/formatting.ts - Number formatting (fmt, fmtDec)
|
|
// - ./utils/floor-utils.ts - Floor functions (getFloorMaxHP, getFloorElement)
|
|
// - ./utils/mana-utils.ts - Mana calculations (computeMaxMana, computeElementMax, etc.)
|
|
// - ./utils/combat-utils.ts - Combat functions (calcDamage, calcInsight, getTotalDPS, etc.)
|
|
//
|
|
// All exports are maintained for backward compatibility.
|
|
|
|
export * from './utils/index';
|