Compatibility
Minecraft: Java Edition
Platforms
Creators
Details
Summary
Enchanted Bosses is a bosses plugin created with one goal in mind customisability without needing to know how to code. This means you can write your own abilities for bosses you design without writing any java. It also comes with a stock boss, called Flesheater, to give you an example of what you can create using it.
Installation is simple: Download SkillsLibrary and EnchantedBosses, and place the Jar files into your plugins folder.
Configuring a Boss
Boss #1: Flesheater A 50 health zombie wearing armor that has a 50% chance to fling you into the air every 10 seconds. It takes reduced damage using our EASED damage modifier, with a cap of 15 damage a hit.
Here is the document for the Flesheater!
name: Flesheater
colouredname: "<yellow><b>Flesheater"
description: "A creature with an insatiable thirst for flesh"
damagemodifier:
type: EASED
damageCap: 15
expectedMaximumDamage: 30
entity:
type: ZOMBIE
equipment:
helmet:
type: DIAMOND_HELMET
chestplate:
type: IRON_CHESTPLATE
attributes:
MAX_HEALTH: 50
skills:
fling:
trigger:
type: COMBAT
conditions:
proc:
type: CHANCE
mode: SELF
chance: 0.5
cooldown:
type: COOLDOWN
mode: SELF
cooldown: 10
effects:
fling:
type: FLING
mode: OTHER
value: 1.0
antiboat:
trigger:
type: VEHICLE
effects:
antiboat:
type: CANCEL
mode: SELF
rewards:
type: BASIC
items:
diamonds:
type: DIAMOND
amount: 10
steak:
type: COOKED_BEEF
amount: 16
experience: 50
commands: []
autospawn:
mode: BOSS
weighting: 1
biomes:
- PLAINS
worlds:
- world
biomesWhitelist: true
spaceNeeded: 4
bossbar:
enabled: true
flags: [ ]
color: GREEN
style: PROGRESS
Not too bad is it?
Support
You can read more about writing custom skills on the SkillsLibrary github wiki page: here However, this isn't fully comprehensive yet, so I highly recommend joining my discord and talking to me in #my-plugins. I typically respond (at least) within 24 hours of a message in there if you want to ask a question.