Skeleton Emperor
Skeleton King
Plugin Description
THE SKELETON BOSSES introduces formidable skeleton bosses to your Minecraft world: The Skeleton Emperor, The Skeleton King and The Skeleton Winter Lord. These powerful entities spawn automatically in designated areas, boasting enhanced attributes that set them apart from ordinary skeletons. Defeat these challenging foes to claim unique and valuable loot, adding an exciting new dimension to your gameplay experience.
Features
- Two custom boss types: The Skeleton Emperor, The Skeleton King and The Skeleton Winter Lord.
- Automatic, randomized boss spawning system
- Enhanced boss attributes and abilities
- Unique item drops from defeated bosses
- Custom boss health bars
- Intuitive command system for plugin interaction
- Multi-language support (English and Spanish)
- Highly customizable configuration options
Installation
To install TheSkeletonBosses, simply copy the TheSkeletonBosses.jar file into your server's plugins folder. Restart your server, and you're ready to go!
Configuration
Follow these steps to configure TheSkeletonBosses:
- Start your server with the plugin in the plugins folder
- Navigate to the config.yml file in the TheSkeletonBosses folder within your plugins directory
- Verify the world name where you want bosses to appear "spawn: world"
- Adjust the coordinates for the central spawn point "spawn: location"
- Set "spawn: enabled:" to true
- In your server, execute the command "/mumc reload" to apply changes
Here's the default config.yml file:
Code (YAML):
# Prefix of the plugin
prefix : "&l[TSB] &r"
# check in the /lang folder
# Plugin language [en, es, other]
language : "en"
spawn:
enabled : false
# Name of the world where mobs will spawn
world : "world"
# Time interval for mob spawning (1d = 1440 minutes, 1minute = 1 interval)
interval : 1440
# Mob spawning radius
# Requeried: min_radius < max_radius
min_radius : 0
max_radius : 10
# Percentage of all bosses that will spawn
chance : 100
# Reference position for mob spawning
location:
x : -74
z : 296
# If commands_after_death is enabled, the default custom items will not drop, instead the command will be executed.
# In both cases it will drop the experience.
commands_after_death : false
###########################
# Skeleton King
###########################
skeleton_king :
# Appearance percentage relative to other bosses (0-100)
percentage : 33.33
# color for bossbar, messages and custom items
color : "&d"
# Health of the Skeleton King
health : 350
# 20 is approximately 10 hearts
damage : 20
# Projectile evasion chance (0-100)
projectile_evasion : 75
# The unit of measurement is the amount of experience, not the number of levels.
drop_experience : 350
bossbar:
title : "{boss_color}&l{boss_name} &c({health}/{max_health})❤"
# The allowed colors are:
# BLUE, GREEN, PINK, PURPLE, RED, WHITE YELLOW
color : "PURPLE"
# you can add {player_killer} to the command
# to refer to the player who killed the boss
command : "give {player_killer} diamont 1"
# This option will only be executed if “commands_after_death” is set to true.
command_for_nearby_players:
enabled : false
radius : 40 # Radius in blocks
# uses {player} representing each nearby player
command : "give {player} diamond 1"
###########################
# Skeleton Emperor
###########################
skeleton_emperor :
# Appearance percentage relative to other bosses (0-100)
percentage : 33.33
# color for bossbar, messages and custom items
color : "&6"
# Health of the Skeleton Emperor
health : 250
# power of the skeleton emperor's bow
power : 30
# Projectile evasion chance (0-100)
projectile_evasion : 50
# The unit of measurement is the amount of experience, not the number of levels.
drop_experience : 300
bossbar:
title : "{boss_color}&l{boss_name} &c({health}/{max_health})❤"
# The allowed colors are:
# BLUE, GREEN, PINK, PURPLE, RED, WHITE, YELLOW
color : "YELLOW"
# you can add {player_killer} to the command
# to refer to the player who killed the boss
command : "give {player_killer} diamont 1"
# This option will only be executed if “commands_after_death” is set to true.
command_for_nearby_players:
enabled : false
radius : 40 # Radius in blocks
# uses {player} representing each nearby player
command : "give {player} diamond 1"
###########################
# Skeleton Winter Lord
###########################
skeleton_winter_lord :
# Appearance percentage relative to other bosses (0-100)
percentage : 33.33
# color for bossbar, messages and custom items
color : "&b"
# Health of the Skeleton Winter Lord
health : 300
# power of the skeleton winter lord's bow
power : 25
# Projectile evasion chance (0-100)
projectile_evasion : 75
# The unit of measurement is the amount of experience, not the number of levels.
drop_experience : 300
bossbar:
title : "{boss_color}&l{boss_name} &c({health}/{max_health})❤"
# The allowed colors are:
# BLUE, GREEN, PINK, PURPLE, RED, WHITE, YELLOW
color : "BLUE"
# you can add {player_killer} to the command
# to refer to the player who killed the boss
command : "give {player_killer} diamont 1"
# This option will only be executed if “commands_after_death” is set to true.
command_for_nearby_players:
enabled : false
radius : 40 # Radius in blocks
# uses {player} representing each nearby player
command : "give {player} diamond 1"
Spoiler: lang/en.yml - Messages English
Code (YAML):
# Messages in English
plugin:
enabled : "plugin has been enabled!"
disabled : "plugin has been disabled!"
about:
welcome : "Welcome to Skeleton Bosses!"
description:
- "TSB introduces formidable skeleton bosses to your Minecraft world : &6<he Skeleton Emperor and &dthe Skeleton King. "
- "These powerful entities automatically appear around the designated area and boast enhanced attributes that distinguish them from common skeletons. "
- "Defeat these challenging enemies to obtain unique and valuable loot, adding an exciting new dimension to your gaming experience. "
commands:
list: "List of commands "
player_only: "You can only use this command from within the game! "
help_text: "To see the list of commands, type "
reload: "Configuration reloaded! "
not_found: "Command not found! "
no_permission: "You don't have permission to use this command! "
already_exists: "You cannot generate another Boss because one already exists in the world. "
clear_records: " All the bosses' records have been deleted! "
# Name of the bosses
# Here are the values of the variable {boss_name}
bosses_names:
skeleton_king: "Skeleton King "
skeleton_king_sentinel: "Sentinel "
skeleton_emperor: "Skeleton Emperor "
skeleton_emperor_guard: "Imperial Guard "
skeleton_winter_lord: "Skeleton Winter Lord "
skeleton_winter_lord_minion: "Minion "
# Messages of the bosses
events:
# Variables: {prefix}, {boss_color}, {boss_name}, {coords}
spawn: "&a {prefix } {boss_color }&lThe {boss_name } &r&ahas spawned! &7coords : &e{coords}"
# Variables: {prefix}, {boss_color}, {boss_name}
death_without_killer : "&c{prefix}{boss_color}&lThe {boss_name} &r&chas died!"
# Variables: {prefix}, {boss_color}, {boss_name}, {player_killer}
death_with_killer : "&c{prefix}{boss_color}&lThe {boss_name} &r&chas been killed by &l&n{player_killer}"
# Name of the default items that drop when bosses are killed
items_names:
bow : "Bow"
sword : "Sword"
helmet : "Helmet"
boots : "Boots"
plugin:
enabled : "plugin has been enabled!"
disabled : "plugin has been disabled!"
about:
welcome : "Welcome to Skeleton Bosses!"
description:
- "TSB introduces formidable skeleton bosses to your Minecraft world : &6<he Skeleton Emperor and &dthe Skeleton King. "
- "These powerful entities automatically appear around the designated area and boast enhanced attributes that distinguish them from common skeletons. "
- "Defeat these challenging enemies to obtain unique and valuable loot, adding an exciting new dimension to your gaming experience. "
commands:
list: "List of commands "
player_only: "You can only use this command from within the game! "
help_text: "To see the list of commands, type "
reload: "Configuration reloaded! "
not_found: "Command not found! "
no_permission: "You don't have permission to use this command! "
already_exists: "You cannot generate another Boss because one already exists in the world. "
clear_records: " All the bosses' records have been deleted! "
# Name of the bosses
# Here are the values of the variable {boss_name}
bosses_names:
skeleton_king: "Skeleton King "
skeleton_king_sentinel: "Sentinel "
skeleton_emperor: "Skeleton Emperor "
skeleton_emperor_guard: "Imperial Guard "
skeleton_winter_lord: "Skeleton Winter Lord "
skeleton_winter_lord_minion: "Minion "
# Messages of the bosses
events:
# Variables: {prefix}, {boss_color}, {boss_name}, {coords}
spawn: "&a {prefix } {boss_color }&lThe {boss_name } &r&ahas spawned! &7coords : &e{coords}"
# Variables: {prefix}, {boss_color}, {boss_name}
death_without_killer : "&c{prefix}{boss_color}&lThe {boss_name} &r&chas died!"
# Variables: {prefix}, {boss_color}, {boss_name}, {player_killer}
death_with_killer : "&c{prefix}{boss_color}&lThe {boss_name} &r&chas been killed by &l&n{player_killer}"
# Name of the default items that drop when bosses are killed
items_names:
bow : "Bow"
sword : "Sword"
helmet : "Helmet"
boots : "Boots"
Spoiler: lang/es.yml - Mensajes en Español
Code (YAML):
# Mensajes en español
plugin:
enabled : "¡El plugin ha sido habilitado!"
disabled : "¡El plugin ha sido deshabilitado!"
about:
welcome : "¡Bienvenido a Los Jefes Esqueleto!"
description:
- "TSB presenta formidables jefes esqueletos en tu mundo de Minecraft : &6&lel Esqueleto Emperador y &del Rey Esqueleto. "
- "Estas poderosas entidades aparecen automáticamente alrededor del área designada y cuentan con atributos mejorados que las distinguen de los esqueletos comunes. "
- "Derrota a estos desafiantes enemigos para obtener un botín único y valioso, lo que agregará una nueva y emocionante dimensión a tu experiencia de juego. "
commands:
list: "Listado de comandos "
player_only: "¡Solo puedes usar este comando desde el juego! "
help_text: "Para ver el listado de comandos, escribe "
reload: "¡Configuración recargada! "
not_found: "¡Comando no encontrado! "
no_permission: "¡ No tienes permiso para usar este comando! "
already_exists: " No puedes generar otro Jefe porque ya existe uno en el mundo. "
clear_records: "¡Todos los registros de los Jefes han sido borrados! "
# Nombre de los jefes
# Aquí estan los valores de la variable {boss_name}
bosses_names:
skeleton_king: "Rey Esqueleto "
skeleton_king_sentinel: "Centinela "
skeleton_emperor: "Esqueleto Emperador "
skeleton_emperor_guard: "Guardia Imperial "
skeleton_winter_lord: "Señor Esqueleto del Invierno "
skeleton_winter_lord_minion: "Esbirro "
events:
# Variables: {prefix}, {boss_color}, {boss_name}, {coords}
spawn: "&a {prefix } {boss_color }&lEl {boss_name } &r&a¡ha aparecido! &7coords : &e{coords}"
# Variables: {prefix}, {boss_color}, {boss_name}
death_without_killer : "&c{prefix}{boss_color}&lEl {boss_name} &r&c¡ha muerto!"
# Variables: {prefix}, {boss_color}, {boss_name}, {player_killer}
death_with_killer : "&c{prefix}{boss_color}&lEl {boss_name} &r&cha sido asesinado por &l&n{player_killer}"
# Nombre de los objetos por defecto que dejan caer cuando mueren los jefes
items_names:
bow : "Arco"
sword : "Espada"
helmet : "Casco"
boots : "Botas"
plugin:
enabled : "¡El plugin ha sido habilitado!"
disabled : "¡El plugin ha sido deshabilitado!"
about:
welcome : "¡Bienvenido a Los Jefes Esqueleto!"
description:
- "TSB presenta formidables jefes esqueletos en tu mundo de Minecraft : &6&lel Esqueleto Emperador y &del Rey Esqueleto. "
- "Estas poderosas entidades aparecen automáticamente alrededor del área designada y cuentan con atributos mejorados que las distinguen de los esqueletos comunes. "
- "Derrota a estos desafiantes enemigos para obtener un botín único y valioso, lo que agregará una nueva y emocionante dimensión a tu experiencia de juego. "
commands:
list: "Listado de comandos "
player_only: "¡Solo puedes usar este comando desde el juego! "
help_text: "Para ver el listado de comandos, escribe "
reload: "¡Configuración recargada! "
not_found: "¡Comando no encontrado! "
no_permission: "¡ No tienes permiso para usar este comando! "
already_exists: " No puedes generar otro Jefe porque ya existe uno en el mundo. "
clear_records: "¡Todos los registros de los Jefes han sido borrados! "
# Nombre de los jefes
# Aquí estan los valores de la variable {boss_name}
bosses_names:
skeleton_king: "Rey Esqueleto "
skeleton_king_sentinel: "Centinela "
skeleton_emperor: "Esqueleto Emperador "
skeleton_emperor_guard: "Guardia Imperial "
skeleton_winter_lord: "Señor Esqueleto del Invierno "
skeleton_winter_lord_minion: "Esbirro "
events:
# Variables: {prefix}, {boss_color}, {boss_name}, {coords}
spawn: "&a {prefix } {boss_color }&lEl {boss_name } &r&a¡ha aparecido! &7coords : &e{coords}"
# Variables: {prefix}, {boss_color}, {boss_name}
death_without_killer : "&c{prefix}{boss_color}&lEl {boss_name} &r&c¡ha muerto!"
# Variables: {prefix}, {boss_color}, {boss_name}, {player_killer}
death_with_killer : "&c{prefix}{boss_color}&lEl {boss_name} &r&cha sido asesinado por &l&n{player_killer}"
# Nombre de los objetos por defecto que dejan caer cuando mueren los jefes
items_names:
bow : "Arco"
sword : "Espada"
helmet : "Casco"
boots : "Botas"
Spoiler: Radius graph
Important Notes:
- Bosses spawn one at a time. A new boss will only appear after the current one is defeated.
- Each boss type has a spawn percentage relative to the other. By default, it's set to 50%, giving each an equal chance of appearing.
- To customize boss rewards, you can enable command execution instead of default item drops. Change the variable “commands_after_death” to true, Modify the “bosses: skeleton_king: command” section in config.yml and specify the desired command, in the same way with the other Boss.
Commands
/tsb spawn [SkeletonKing | SkeletonEmperor | SkeletonWinterLord ]
Spawns a specific boss at the player's location.
/tsb reload
Reloads the plugin configuration.
/tsb location
Sends a message to the chat with the last registered coordinates of the boss..
/tsb clear
Removes the logged data from the boss, it does not remove the boss only the logs.
/tsb author
Shows information about the plugin author.
/tsb version
Displays the current version of the plugin.
/tsb help
Shows the list of available commands.
Supported Languages
- English (en)
- Spanish (es)
- Others (template for adding new languages)
Enhance your Minecraft server with TheSkeletonBosses and prepare for epic battles against the Skeleton Emperor and Skeleton King!
Questions and suggestions
You can do it on my Discord
Join and be the first to know about new updates
https://discord.gg/BbFc8jy
Author: Gersom
Quick facts
- Edition: Minecraft Java
- File type: .jar
- Minecraft versions listed: 1.20, 1.20.6, 1.21
- How to install: Install the matching mod loader (Forge, Fabric or NeoForge) for your Minecraft version. → Download the .jar. → Put it in the .minecraft/mods folder and launch that loader profile.
- Where to get it: Opens on Spigot — not every file is mirrored on our own servers.
Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.
THE SKELETON BOSSES | CUSTOM MOBS [1.20 - 1.21.1] is a free Minecraft Java mod. Compatible with Minecraft 1.20, 1.20.6, 1.21. Downloaded 1,586 times (via Spigot). Download it and open it directly in the game.