Compatibility
Minecraft: Java Edition
1.20.1
Platforms
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Boss Creation Plugin
-
What does it do?
This plugin allows you to create custom bosses in Minecraft, including both vanilla and modded mobs. Bosses can have advanced features such as custom drops, respawn times, equipment, potion effects, minion summoning, and powerful skills. -
How does it work?
The plugin enables the creation of bosses through theconfig.yml
file, where you can configure:- Type: Specify the mob type (e.g.,
ZOMBIE
,minecraft:phantom
, or modded mobs likemodnamespace:custom_boss
). - Name: The name displayed above the boss.
- Health: Set the boss's health points.
- Boss Bar Color: Choose a color for the boss bar.
- Equipment: Define the boss’s armor and weapons.
- Effects: Apply potion effects like
STRENGTH
orREGENERATION
. - Drops: Customize loot drops with probability and quantity.
- Respawn Time: Set how often the boss respawns (in seconds).
- Movement Area: Define the radius where the boss can move.
- Target Area: Define the attack radius of the boss.
- Minion Summoning: Configure bosses to summon minions:
- Type: Type of minions.
- Amount: Number of minions summoned.
- Interval: Time (in seconds) between summoning.
- Minion Name: Set a custom name for the minions.
- Skills Configuration: Define special abilities for the boss:
- Name: The displayed name of the skill.
- Cooldown: Minimum 45 seconds between uses.
- Radius: The area affected by the skill.
- Effect: Choose a skill effect (e.g.,
explosion
,heal
,fireball
).
- Type: Specify the mob type (e.g.,
-
Example Configuration:
bosses:
zombieBoss:
type: "ZOMBIE"
name: "The Undying Zombie"
boss_bar_color: "GREEN"
health: 600
size: "NORMAL"
equipment:
helmet: "IRON_HELMET"
chestplate: "IRON_CHESTPLATE"
leggings: "IRON_LEGGINGS"
boots: "IRON_BOOTS"
weapon: "IRON_SWORD"
effects:
- "RESISTANCE:1:999999"
- "STRENGTH:2:999999"
drops:
- item: "IRON_SWORD"
chance: 60
amount: 1
- item: "GOLDEN_APPLE"
chance: 25
amount: 2
drop_equipment_chance: 50
respawn_time: 0
movement_area: 30
target_area: 20
summon: "minecraft:cow"
amount: 2
interval: 30
minion_name: "Minion of the Undying"
skill:
name: "Lightning Strike"
cooldown: 45
radius: 10
effect: "lightning"
- Available Skills:
explosion:
name: "Explosion"
description: "Creates a massive explosion around the boss, dealing damage."
effects:
- "Generates an explosion with the configured radius."
freeze:
name: "Freeze"
description: "Slows down nearby players for a duration."
effects:
- "Applies the slowness effect to players within the radius."
lightning:
name: "Lightning"
description: "Strikes a random player with lightning."
effects:
- "Calls a lightning strike on a random player within range."
heal:
name: "Heal"
description: "Restores health to the boss during battle."
effects:
- "Restores 10 health points to the boss."
fireball:
name: "Fireball"
description: "Launches a fireball at nearby players."
effects:
- "Shoots a fireball at a random target in range."
damage_boost:
name: "Damage Boost"
description: "Temporarily increases the boss's attack power."
effects:
- "Boosts damage output for a limited time."
area_poison:
name: "Area Poison"
description: "Poisons all players in the boss's vicinity."
effects:
- "Applies poison to all players within the radius."
blindness:
name: "Blindness"
description: "Blinds nearby players, limiting their vision."
effects:
- "Applies blindness to all players in range."
earthquake:
name: "Earthquake"
description: "Shakes the ground and launches entities into the air."
effects:
- "Knocks nearby players and mobs into the air."
This plugin makes boss fights more challenging by adding special abilities, custom minions, and configurable effects!