Daily Boss - Daily Boss Challenges
Daily Boss mod introduces a unique system of daily challenges in the style of an ancient Coliseum to Minecraft, where every day brings a new challenge.
Main Features

An impressive Coliseum arena and a special Key Entity appear in the world. When interacting with this entity, a random boss from among those you have previously defeated spawns. The system updates every day - you have exactly 24 hours of real time to complete the challenge.
If you don't meet the 24-hour deadline, the boss will disappear and the Key Entity will reset without reward. For convenient tracking, there's a built-in interface with a paginated list of available bosses, opened with the ` key.
Extending Capabilities
The system supports adding custom bosses through datapacks. Example datapack structure:
data/
└── pladailyboss/
└── dailyboss/
└── your_identifier/
└── monster_identifier.json
Replace "your_identifier" with your mod or namespace ID, and "monster_identifier" with the unique entity ID of your boss.
Example configuration file:
{
"loot_table": [
"minecraft:chests/bastion_treasure",
"minecraft:chests/bastion_other"
],
"nbt": {
"Invul": 202
}
}
Appearance Customization
For customizing boss posters in the interface, use resource packs with images following this path:
assets/pladailyboss/textures/gui/entity_posters/<namespace>/<entity_name>_enabled.png
assets/pladailyboss/textures/gui/entity_posters/<namespace>/<entity_name>_disabled.png
assets/pladailyboss/textures/gui/entity_posters/<namespace>/<entity_name>_corrupted.png
- _enabled.png displays after defeating the boss
- _disabled.png shows before the boss is unlocked
- _corrupted.png is used when the boss refers to an uninstalled modification