Compatibility
Minecraft: Java Edition
Platforms
Supported environments
Links
Creators
Details
Apotheosis Balance Configurator
Balance Apotheosis through a simple config file - no JSON editing required! Is Apotheosis too overpowered for your server? Want to reduce all damage by 50%? This mod lets you adjust all Apotheosis values through a single TOML config file.
Work with Apotheotic Additions!
🎯 What Does This Mod Do?
Multiplies All Apotheosis Values
The mod multiplies all numerical values in Apotheosis:
- 💎 Gem bonuses - damage, attack speed, armor, health
- ⚔️ Weapon & armor affixes - all attributes
- 🧪 Enchantments & effects - levels and duration
- 📦 Loot quality - number of affixes on items
- ✨ Loot rarity - chance of rare items dropping
Works at Runtime
Uses mixins - changes apply automatically without editing hundreds of JSON files!
⚙️ How Does It Work?
Simple Multiplication!
New Value = Old Value × Multiplier
Examples:
- Gem gives +10 damage
- Multiplier = 0.5 (reduce by 50%)
- New value = 10 × 0.5 = 5 damage
- Gem gives +100% attack speed
- Multiplier = 0.2 (reduce by 80%)
- New value = 100% × 0.2 = +20% attack speed
🔧 Configuration Guide
Config file location: config/apotheosisbalancer-common.toml
💪 Multipliers
Base Apotheosis Multiplier:
# Multiplier for all base Apotheosis values
# 1.0 = no change (default)
# 0.5 = reduce all by 50%
# 0.2 = reduce all by 80% (hardcore balance)
# 2.0 = double all values (easy mode)
apotheosisMultiplier = 1.0
Apotheotic Additions Multiplier:
# Separate multiplier for ApotheoticAdditions addon
# This addon adds powerful rarities: Relic, Heirloom, Esoteric
# Recommended: 0.6-0.7 for balance
additionsMultiplier = 1.0
Fallback Multiplier:
# Used when mod detection fails
# Usually should match apotheosisMultiplier
fallbackMultiplier = 1.0
📦 Loot Quality
Quality Multiplier:
# Multiplier for item quality
# Quality affects:
# - Number of affixes on items
# - Drop chance with luck
#
# Examples:
# 1.0 = no change
# 0.5 = fewer affixes on items
# 0.7 = slightly fewer affixes
#
# Lower quality = simpler items!
qualityMultiplier = 1.0
🎲 Rarity Shifting
Minimum Rarity:
# Shift minimum rarity for all loot drops
# Positive = increase rarity
# Negative = decrease rarity
#
# Examples:
# 0 = no change
# -1 = decrease by 1 level (rare → uncommon)
# -2 = decrease by 2 levels (mythic → rare)
# +1 = increase by 1 level (common → uncommon)
minRarityOffset = 0
Maximum Rarity:
# Shift maximum rarity for all loot drops
# Works the same as minRarityOffset
#
# Examples:
# 0 = no change
# -1 = decrease max rarity (mythic → epic)
# +1 = increase max rarity (rare → epic)
maxRarityOffset = 0
🎛️ Toggle Bonus Types
Attributes:
# Enable attribute balancing
# (attack speed, damage, armor, health, etc.)
enableAttributeBalance = true
Enchantments:
# Enable enchantment level balancing from gems
enableEnchantmentBalance = true
Potion Effects:
# Enable potion effect balancing
# (duration, amplifier, cooldown)
enablePotionBalance = true
Special Bonuses:
# Enable special bonus balancing
# (bloody_arrow, leech_block, etc.)
enableSpecialBalance = true
🔢 Rounding Modes
Enchantment Rounding:
# Rounding mode for enchantment levels:
# STANDARD - standard rounding (1.5 → 2, 1.4 → 1)
# CEIL_IF_ABOVE_ONE - if ≥ 1.0, round up to at least 2 (1.05 → 2)
# ALWAYS_CEIL - always round up (1.1 → 2)
# ALWAYS_FLOOR - always round down (1.9 → 1)
#
# Minimum enchantment level: 1 (Sharpness I, Protection I, etc.)
enchantmentRounding = "ALWAYS_CEIL"
Potion Rounding:
# Rounding mode for potion effect amplifiers
# Same modes as enchantments
#
# Minimum amplifier: 0 (Strength I = amplifier 0, Strength II = amplifier 1)
potionRounding = "ALWAYS_CEIL"
Important! Enchantments have minimum level 1, but potion amplifiers have minimum 0!
🐛 Debug (Advanced)
Logging:
# Enable detailed logging to console
# WARNING: Creates MANY log messages!
enableDebugLogging = false
Detailed Info:
# Show detailed caller information
# Only works if enableDebugLogging = true
showCallerInfo = false
🎯 What Does This Mod Cover?
✅ Complete Coverage
- All 163 gems (21 Apotheosis + 142 Apotheotic Additions)
- All attributes - damage, speed, armor, health, movement speed
- All enchantments from gems
- All potion effects - duration, amplifier, cooldown
- Special bonuses - bloody_arrow, leech_block
- Loot quality - number of affixes
📊 All Bonus Types
The mod balances all 11 Apotheosis bonus types:
- ✅ Regular attributes
- ✅ Multi-attributes (royalty gem)
- ✅ Enchantments
- ✅ Potion effects
- ✅ Damage reduction
- ✅ Durability
- ✅ All stats
- ✅ Mage slayer
- ✅ Drop transformation
- ✅ Bloody arrow
- ✅ Leech block
❓ FAQ
Does this work with existing items?
Yes! Changes apply to all items immediately, including already-found gear.
Can I use this on a server?
Yes! Server-side only. Clients don't need to install the mod.
Will this break my world?
No. The mod only multiplies values, it doesn't modify items or world data.
Does this affect Apotheosis enchantments or spawners?
No. The mod only affects the Adventure module:
- ✅ Affixes
- ✅ Gems
- ✅ Loot
- ❌ Enchantment module (not affected)
- ❌ Spawner module (not affected)
- ❌ Garden module (not affected)
What if I want fixed reduction like the datapack?
Set:
apotheosisMultiplier = 0.2 # -80%
additionsMultiplier = 0.4 # -60%
Does this work with modpacks?
Yes! Compatible with any modpack. Perfect for:
- Kitchen sink packs
- Expert mode packs
- PvP packs
- Balanced progression packs
🔄 Alternative: Diminished Apotheosis Datapack
Don't want a mod? Try the Diminished Apotheosis datapack with fixed 80%/60% reduction.
| Feature | This Mod | Datapack |
|---|---|---|
| Custom % | ✅ Any via config | ❌ Fixed 80%/60% |
| Separate multipliers | ✅ Different per mod | ❌ Manual editing |
| Rarity shifting | ✅ Yes | ❌ No |
| Toggle bonuses | ✅ Yes | ❌ Delete files |
| Ease of use | ✅ Single config | ✅ Drop-in |
Use the mod for full control, the datapack for a ready-made solution!
💖 Credits
Thanks to:
- Shadows_of_Fire - Creator of Apotheosis
- ApotheoticAdditions Team - For the amazing addon
- SpongePowered - For the Mixin framework
Balance Apotheosis with just one config file! ⚖️
No JSON editing, no datapacks - just simple TOML configuration.



