Boss Mob Enhancer

Quick rating

Boss Mob Enhancer

No reviews yet

Unleash legendary chaos. Boss Mob Enhancer dynamically upgrades your Minecraft mobs into elite-tier enemies with unpredictable personalities, devastating powers, and epic visual flair. Every battle becomes a unique, memorable event.

Fantasy
Survival
Ores & Resources
Aesthetic Improvements
Bosses
Hostile Mobs
UI & Menu Tool
Mod Loaders
Forge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

About

Project Details

Type
Mod
Latest Version
bossmobenhancer1.12.2-1.1.5.jar
Authors

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Boss Mob Enhancer
Version: 1.0 • Minecraft 1.12.2 • Forge Compatible
Unleash legendary chaos. Boss Mob Enhancer dynamically upgrades your Minecraft mobs into elite-tier enemies with unpredictable personalities, devastating powers, and epic visual flair. Every battle becomes a unique, memorable event.
✦ Features:
- Randomized Boss Loadouts
Each enhanced mob receives 2–3 randomized abilities from a deep personality trait pool, ensuring no two bosses are ever the same.
- Tier-Based Scaling
Mob enhancements scale with health and other factors, granting higher-tier enemies more powerful abilities, buffs, and effects.
- Configurable Through Forge GUI
Fine-tune every aspect from an intuitive in-game config screen: tier weights, whitelist/blacklist mobs, module toggles, and enhancement chance.
- Dynamic Visual Effects
Particle auras, sound cues, and visual tier indicators signal a true threat. Enhanced mobs even receive fully generated, color-coded names using a custom fantasy name generator.
- Customizable Abilities
From blink-teleportation and aura debuffs to terrain-altering strikes and minion summoning—bosses have diverse, devastating arsenals.
- Mod Compatibility
Full support for modded mobs from popular content packs like Twilight Forest, Lycanite’s Mobs, and more.

🔧 Configuration:
Accessible in-game via Forge’s mod menu or manually via bossmobenhancer.cfg. Key options include
- Enhancement chance
- Max tier
- Difficulty preset or custom weights
- Buff toggles: terrain effects, minions, potion buffs
- Entity whitelist/blacklist
- Visual name tag and particle options

💡 For Mod Developers:
Boss Mob Enhancer is designed to be extensible. Easily plug in new abilities, scale logic, or UI elements. Planning a framework to expose boss profiles and NBT tags for integration with other mods or mapmakers.

Made with the assistance of Sweep AI and Copilot.

BossMobEnhancer Release 2

Dramatic GUI and scaling reforms, new item added, new terrain, new particle effects, new abilities, more of a V2 really. Sorry, I could not get the nameplate toggle to work on this update. I've put all the legwork in; it's just debugging now :3

BossMobEnhancer Release 3

Rebuild of the base code completely redid the back end of the GUI. Everything works, minions repaired, effects expanded

BossMobEnhancer Release 4

  • greatly reduced loot and started to implement custom tables and items.
  • Greatly expanded ability pool from 12 to 29, with future plans to have an even hundred.
  • reconfigured PassiveMobHandler. Java, don't punch the Lord Chicken..........
  • Enjoy the chaos!!!!!!

BossMobEnhancer Release 5

  • moved away from mccreator
  • Clean up code—ongoing process
  • fixed abilitieshandler.java

    Release 6!!!
  • Server ready
  • Abilities separated into sperate files and expanded greatly
  • Clean up of code 90% complete
BossMobEnhancer/                          // Root directory for your mod project.
├── build.gradle // Gradle build file.
├── settings.gradle // Gradle settings file.
├── gradle/ // Gradle scripts and wrapper.
│ ├── scripts/
│ │ ├── dependencies.gradle
│ │ ├── extra.gradle
│ │ ├── helpers.gradle
│ │ ├── publishing.gradle
│ └── wrapper/
│ ├── gradle-wrapper.jar
├── src
│ └── main
│ ├── java
│ │ └── com
│ │ └── example
│ │ └── bossmobenhancer
│ │ ├── MainMod.java // Registers blocks, items, entities, configs, GUI handler, network packets, and proxies.
│ │ ├── CommonProxy.java // Server/common init stubs (no client-only imports here).
│ │ ├── ai // Boss logic and behavioral enhancements.
│ │ │ ├── SpecialAbilities.java // AI rules for boss actions.
│ │ │ ├── ArmorHandler.java // Applies armor-based effects and weight penalties.
│ │ │ ├── AttributeSyncer.java // Syncs dynamic attributes between server and client.
│ │ │ ├── BehaviorScaler.java // Adjusts AI task priorities based on boss phase.
│ │ │ ├── MinionSpawner.java // Handles boss-minion summon logic.
│ │ │ ├── ParticleEmitter.java // Emits custom particles during abilities.
│ │ │ ├── TerrainManipulator.java // Alters terrain for special boss events.
│ │ │ ├── DefensiveAbilities.java // Defensive boss abilities (shields, resistance, etc).
│ │ │ ├── FireAbilities.java // Fire and heat-based boss abilities.
│ │ │ ├── IceAbilities.java // Ice and cold-based boss abilities.
│ │ │ ├── PhysicalAbilities.java // Physical and force-based boss abilities.
│ │ │ ├── PoisonAbilities.java // Poison, decay, and wither boss abilities.
│ │ │ ├── StormAbilities.java // Storm, lightning, and wind boss abilities.
│ │ │ └── UtilityAbilities.java // Utility, blink, web, and time-based boss abilities.
│ │ ├── blocks // Custom blocks.
│ │ │ └── BlockEnshroudedBeacon.java // Custom beacon block with GUI activation.
│ │ ├── client
│ │ │ ├── ClientProxy.java // Client-only init (register renderers, overlays).
│ │ │ ├── BossOverlayHandler.java // Handles boss-bar events without direct RenderLivingBase imports.
│ │ │ ├── BossRegistry.java // Tracks active boss entities.
│ │ │ ├── CustomBossBarRenderer.java // Custom boss-bar GUI rendering.
│ │ │ ├── GuiFactory.java // Launches mod config screen from Mod List.
│ │ │ ├── GuiMainConfigScreen.java // Top-level config hub.
│ │ │ ├── GuiBasicConfigScreen.java // Toggles for boss behavior and visuals.
│ │ │ ├── GuiAdvancedConfigScreen.java // Detailed scaling and entity control.
│ │ │ ├── GuiHandler.java // Handles server-side GUI open/close events.
│ │ │ └── gui
│ │ │ ├── GuiEnshroudedBeacon.java // Main curse-selection GUI for the beacon.
│ │ │ └── GuiCurseButton.java // Custom textured button with icon/hover/select visuals.
│ │ ├── commands
│ │ │ └── BossProfileCommand.java // Switch scaling presets during gameplay.
│ │ ├── config
│ │ │ └── ConfigHandler.java // Loads and syncs config options from disk.
│ │ ├── data
│ │ │ └── ScalingProfileLoader.java // Loads boss behavior profiles from JSON.
│ │ ├── entities
│ │ │ └── EntityBossMinion.java // Minion mob summoned during boss fights.
│ │ ├── events
│ │ │ ├── BossMobEnhancer.java // Top-level gameplay hooks and triggers.
│ │ │ ├── PassiveMobHostilityHandler.java // Converts neutral mobs when cursed/named.
│ │ │ ├── BossLootHandler.java // Controls drops from elite/boss mobs.
│ │ │ ├── BossRewardHandler.java // Distributes custom rewards after kills.
│ │ │ ├── LordSpawnHandler.java // Spawns ultra-rare lord-tier bosses.
│ │ │ └── BossPhaseHandler.java // Handles multi-phase logic and transitions.
│ │ ├── items
│ │ │ └── ItemLunarBlessedApple.java // Used to craft and power the Enshrouded Beacon.
│ │ ├── network // Packet communication layer.
│ │ │ ├── MessageSetCurse.java // Packet to sync selected curse to the server.
│ │ │ └── PacketHandler.java // Registers and initializes packet channel.
│ │ ├── registry // Replace manual registry with event-based handlers.
│ │ │ ├── BlockRegistry.java // @SubscribeEvent for blocks.
│ │ │ ├── ItemRegistry.java // @SubscribeEvent for items.
│ │ │ └── ModEntityRegistry.java // @SubscribeEvent for entities.
│ │ ├── tileentity
│ │ │ └── TileEntityEnshroudedBeacon.java // Applies and persists area curses in real-time.
│ │ └── utils
│ │ ├── EnchantmentUtils.java // Utility functions for enchantment manipulation.
│ │ └── NameGenerator.java // Procedural name generator for mobs/bosses.
│ └── resources
│ ├── META-INF
│ │ └── mods.toml // Mod metadata and loader config.
│ └── assets
│ └── bossmobenhancer
│ ├── blockstates
│ │ └── enshrouded_beacon.json // Block rendering and model references.
│ ├── lang
│ │ ├── en_us.lang // UI text, descriptions, tooltip keys.
│ │ ├── fr_fr.lang
│ │ ├── de_de.lang
│ │ ├── ja_jp.lang
│ │ ├── zh_cn.lang
│ │ └── es_es.lang
│ ├── models
│ │ ├── block
│ │ │ └── enshrouded_beacon.json // Full cube model for the beacon block.
│ │ └── item
│ │ └── enshrouded_beacon.json // Handheld and inventory rendering.
│ ├── recipes
│ │ └── enshrouded_beacon.json // Crafted from Lunar Blessed Apple + base block.
│ └── textures
│ ├── blocks
│ │ └── enshrouded_beacon.png // All-side texture for the custom beacon.
│ ├── gui
│ │ ├── enshrouded_beacon.png // Background layout for the custom GUI.
│ │ └── buttons // Curse-specific textured buttons.
│ │ ├── curse_button_*.png
│ └── items
│ └── lunar_blessed_apple.png // Glowing fruit used in beacon crafting.
└── config
└── bossmobenhancer
├── bossmobenhancer.cfg // Toggles for visuals, difficulty, drop rates, etc.
├── scaling_profiles.json // Stat/effect curves keyed by biome or tier.
└── README.txt // Human-readable guide to tuning values.

Screenshots

Gallery

  • Screenshot 2025-06-20 164417.png
    Screenshot 2025-06-20 164417.png Screenshot 2025-06-20 164417.png
  • Screenshot 2025-06-20 165301.png
    Screenshot 2025-06-20 165301.png Screenshot 2025-06-20 165301.png
  • Screenshot 2025-06-20 165239.png
    Screenshot 2025-06-20 165239.png Screenshot 2025-06-20 165239.png
  • Screenshot 2025-06-20 164601.png
    Screenshot 2025-06-20 164601.png Screenshot 2025-06-20 164601.png
  • Screenshot 2025-06-20 164511.png
    Screenshot 2025-06-20 164511.png Screenshot 2025-06-20 164511.png
  • Screenshot 2025-06-20 165355.png
    Screenshot 2025-06-20 165355.png Screenshot 2025-06-20 165355.png

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Downloads
Last Updated
Created
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works