Infernal Mobs
InfernalMobsPlus is a lightweight Minecraft plugin that enhances standard mobs by giving them random powers and visual effects. Built for Paper or Spigot servers, it provides a modular system for creating unique and dangerous mobs.
Quick challenge
How far can you run before the mobs catch you?
Minecraft check
Confirm your run
Complete the quick check to get your code.
Infernal Mobs
InfernalMobsPlus
InfernalMobsPlus is a lightweight Minecraft plugin that enhances standard mobs by giving them random powers and visual effects. Built for Paper or Spigot servers, it provides a modular system for creating unique and dangerous mobs.
---
Features
- Randomly buffs mobs with custom "infernal powers" - Dynamic visual effects (particles, trails, auras) - Modular power system (easy to add your own) - Simple configuration and setup
---
Included Powers
- Windstep – Surrounds the mob with flame and lava particles - Windstep – Leaves fire particles as the mob moves - Windstep – Slows nearby entities - Windstep – Launches the mob forward randomly - *(More powers can be added easily)*
---
Installation
1. Place the `InfernalMobsPlus.jar` into your server's `plugins/` folder. 2. Start or restart your server. 3. Edit the generated `config.yml` if needed.
---
Configuration
A basic `config.yml` is generated on first run: ```yaml
InfernalMobsPlus — default configuration
spawn-chance: 0.05 # 5% chance for a natural spawn to become infernal loot: emerald: material: EMERALD min-multiplier: 3 max-multiplier: 9 drop-chance-per-tier: 1.0 only-drop-if-player-kill: false
diamond: material: DIAMOND min-multiplier: 1 max-multiplier: 3 drop-chance-per-tier: 1.0 only-drop-if-player-kill: false
netherite-scrap: material: NETHERITE_SCRAP min-multiplier: 1 max-multiplier: 1 drop-chance-per-tier: 0.2 only-drop-if-player-kill: true
messages: death-broadcast: "§6[InfernalMobs+] §eA {tier} {mob} was slain by {killer}!" tier-names: 1: "Infernal" 2: "Super Infernal"
Chance for a mob to become SUPER Infernal (overrides normal spawn chance)
super-infernal-chance: 0.0001 # 1 in 10,000
powers: windstep-chance: 0.3 # 30 % chance each second (adjust to taste)
allowed-infernal-mobs: - SPIDER - ZOMBIE - CREEPER - WITHER_SKELETON - SILVERFISH - SLIME - WARDEN ```