// ─── Enchantment Effects Catalogue ──────────────────────────────────────────────── // Re-exports from category-specific files for backward compatibility // All enchantment effect definitions have been moved to src/lib/game/data/enchantments/ export { ENCHANTMENT_EFFECTS, getEnchantmentEffect, getEffectsForEquipment, canApplyEffect, calculateEffectCapacityCost, // Also export category-specific collections SPELL_EFFECTS, MANA_EFFECTS, COMBAT_EFFECTS, ELEMENTAL_EFFECTS, DEFENSE_EFFECTS, UTILITY_EFFECTS, SPECIAL_EFFECTS, } from './enchantments/index' export type { EnchantmentEffectCategory, EnchantmentEffectDef } from './enchantment-types'