Daily Boss - More Boss Config

Quick rating

Community listing page, reviews here may not be monitored by the author.

Daily Boss - More Boss Config

By EtemaOwner

No reviews yet

Add more config for Daily Boss

No Theme
No Genre
Adventure/Exploration
Bosses
Mod Addon
Mod Loaders
Forge
NeoForge
Minecraft

Community voices

Reviews

List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Show per page
10
25
50
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Where It Runs
Client and Server

Must be installed on both the client and the server.

About

Project Details

Type
Mod
License
All Rights Reserved
Latest Version
dbmbc-1.0.3.jar

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

DBMBC (Daily Boss More Boss Config)

Requires Daily Boss to work.

⚠️ Important Information

[!IMPORTANT] THIS VERSION ADDS CONFIGURATION ONLY. It does NOT include any boss entities. It allows you to configure bosses provided by datapacks.

🛑 DO NOT USE WITH DAILY BOSS - MORE BOSSES 🛑 They share the same logic but are separated to give you granular control over your modbucket. Using both will cause conflicts.

DBMBC adds support for bosses from multiple boss-focused mods and lets you decide which ones appear in the rotation, and where (Dimension / Biome).

Configuration is automatic and handled through a single file generated on first launch: config/dailyboss_spawn_rules.json


⚙️ Configuration

Global Settings

Control the default behavior for the mod.

"global_settings": {
  "default_enabled": true,
  "auto_add_new_bosses": true,
  "require_biome_match": false
}
  • default_enabled: New or unconfigured bosses are allowed by default.
  • auto_add_new_bosses: Newly detected boss IDs are automatically appended to the config file.
  • require_biome_match:
    • true: Boss spawns only if both Dimension AND Biome match the rules.
    • false: Boss spawns if either checks pass (or if lists are empty).

Per-Boss Rules

Configure specific rules for each boss ID.

"boss_rules": {
  "cataclysm:ignis": {
    "enabled": true,
    "dimensions": ["minecraft:the_nether"],
    "biomes": ["minecraft:nether_wastes"],
    "blacklist_mode": false
  }
}
  • enabled: Force inclusion (true) or exclusion (false) from the rotation.
  • dimensions / biomes: Lists of Allowed (Whitelist) or Forbidden (Blacklist) locations.
  • blacklist_mode:
    • false (Whitelist): The location must match at least one entry in the lists.
    • true (Blacklist): The location must not match any entry.

📋 Evaluation Logic

  1. Boss Existence: The boss entity must be registered in the game.
  2. Enabled Check: If enabled = false, the boss is skipped immediately.
  3. Blacklist Mode:
    • If false (Whitelist): At least one condition must match.
    • If true (Blacklist): No conditions may match.
  4. Strictness:
    • If require_biome_match = true, both Dimension and Biome checks must pass.

Examples

1. Disable a specific boss completely:

"cataclysm:maledictus": { "enabled": false }

(Note: Removing a boss entry restores it to global defaults. Explicitly setting false ensures it stays disabled.)

2. Allow only in Badlands:

"dungeons_and_combat:sunleia": {
  "enabled": true,
  "biomes": ["minecraft:badlands"],
  "blacklist_mode": false
}

3. Allow anywhere EXCEPT the Nether:

"cataclysm:ancient_remnant": {
  "enabled": true,
  "dimensions": ["minecraft:the_nether"],
  "blacklist_mode": true
}

💎 Loot & Progression

Every boss definition can map to high-value loot tables (e.g., Bastion Treasure) so victories feel meaningful without breaking early progression.

You can customize loot per boss in the JSON config without editing datapacks:

"loot": {
  "loot_tables": [
    "minecraft:chests/bastion_treasure",
    "yourpack:custom/ignis_rewards"
  ],
  "append_defaults": false
}
  • loot_tables: A list of loot tables to generate when the boss is defeated. (Replaces default loot).
  • append_defaults:
    • true: Adds your custom loot on top of the original drops.
    • false: Replaces the original loot entirely with your selection.
  • Leaving the loot section empty preserves the original datapack loot.

This layered system ensures non-destructive editing: Addon Loot(Optional) Appended DefaultsUnderlying Datapack Rewards


Discord

DBMBC (Daily Boss More Boss Config)

Requires Daily Boss to work.

⚠️ Important Information

[!IMPORTANT] THIS VERSION ADDS CONFIGURATION ONLY. It does NOT include any boss entities. It allows you to configure bosses provided by datapacks.

🛑 DO NOT USE WITH DAILY BOSS - MORE BOSSES 🛑 They share the same logic but are separated to give you granular control over your modbucket. Using both will cause conflicts.

DBMBC adds support for bosses from multiple boss-focused mods and lets you decide which ones appear in the rotation, and where (Dimension / Biome).

Configuration is automatic and handled through a single file generated on first launch: config/dailyboss_spawn_rules.json


⚙️ Configuration

Global Settings

Control the default behavior for the mod.

"global_settings": {
  "default_enabled": true,
  "auto_add_new_bosses": true,
  "require_biome_match": false
}
  • default_enabled: New or unconfigured bosses are allowed by default.
  • auto_add_new_bosses: Newly detected boss IDs are automatically appended to the config file.
  • require_biome_match:
    • true: Boss spawns only if both Dimension AND Biome match the rules.
    • false: Boss spawns if either checks pass (or if lists are empty).

Per-Boss Rules

Configure specific rules for each boss ID.

"boss_rules": {
  "cataclysm:ignis": {
    "enabled": true,
    "dimensions": ["minecraft:the_nether"],
    "biomes": ["minecraft:nether_wastes"],
    "blacklist_mode": false
  }
}
  • enabled: Force inclusion (true) or exclusion (false) from the rotation.
  • dimensions / biomes: Lists of Allowed (Whitelist) or Forbidden (Blacklist) locations.
  • blacklist_mode:
    • false (Whitelist): The location must match at least one entry in the lists.
    • true (Blacklist): The location must not match any entry.

📋 Evaluation Logic

  1. Boss Existence: The boss entity must be registered in the game.
  2. Enabled Check: If enabled = false, the boss is skipped immediately.
  3. Blacklist Mode:
    • If false (Whitelist): At least one condition must match.
    • If true (Blacklist): No conditions may match.
  • Strictness:
    • If require_biome_match = true, both Dimension and Biome checks must pass.

Examples

1. Disable a specific boss completely:

"cataclysm:maledictus": { "enabled": false }

(Note: Removing a boss entry restores it to global defaults. Explicitly setting false ensures it stays disabled.)

2. Allow only in Badlands:

"dungeons_and_combat:sunleia": {
  "enabled": true,
  "biomes": ["minecraft:badlands"],
  "blacklist_mode": false
}

3. Allow anywhere EXCEPT the Nether:

"cataclysm:ancient_remnant": {
  "enabled": true,
  "dimensions": ["minecraft:the_nether"],
  "blacklist_mode": true
}

💎 Loot & Progression

Every boss definition can map to high-value loot tables (e.g., Bastion Treasure) so victories feel meaningful without breaking early progression.

You can customize loot per boss in the JSON config without editing datapacks:

"loot": {
  "loot_tables": [
    "minecraft:chests/bastion_treasure",
    "yourpack:custom/ignis_rewards"
  ],
  "append_defaults": false
}
  • loot_tables: A list of loot tables to generate when the boss is defeated. (Replaces default loot).
  • append_defaults:
    • true: Adds your custom loot on top of the original drops.
    • false: Replaces the original loot entirely with your selection.
    • Leaving the loot section empty preserves the original datapack loot.

This layered system ensures non-destructive editing: Addon Loot(Optional) Appended DefaultsUnderlying Datapack Rewards


Discord

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~7,000
Total Downloads
CurseForge
~6,000
Modrinth
<1,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works