

Entity Loot Drops
A highly customizable modification that allows complete overhaul of loot drop systems from any creatures in the game. An ideal tool for modpack creators and server owners looking to diversify item acquisition mechanics.
Advanced Forge Configuration Editor
All parameters can now be edited, created, and deleted through a convenient JSON editor visual interface.
Main Features
- Deep personalization of item drops from specific entities
- Configuration of drop chances and quantity ranges for dropped items
- Addition of custom NBT data to dropped items
- Full drop configuration for all hostile mobs
Conditional Loot Drops
The system allows setting various conditions for special drop activation:
- Require specific player advancements
- Active potion effects
- Specific equipment
- Location in specific dimensions
- Only on direct player kills
Event System
Built-in support for seasonal and holiday events:
- Winter period, summer, Easter, Halloween
- Event toggling via commands
- Double drop chance mode
- Ability to create custom events
Command Integration
Command execution at the moment of loot drops:
- Use of placeholders for player and entity data
- Configurable command execution probability
Mod Commands
/lootdrops event <event_name> <on/off>- Event management /lootdrops event dropchance <on/off>
- Toggle double chance
/lootdrops active_events- View active events /lootdrops listall
- List all available events
/lootdrop configmenu- Quick access to settings menu /lootdrops reload
- Configuration reload
Configuration
All settings are configured through JSON files, which simplifies editing.
Configuration example:
{
"entityId": "minecraft:zombie",
"itemId": "minecraft:diamond",
"dropChance": 5.0,
"minAmount": 1,
"maxAmount": 3,
"nbtData": "{display:{Name:'{\"text\":\"Special Diamond\"}'}}",
"requiredAdvancement": "minecraft:story/mine_diamond",
"requiredDimension": "minecraft:overworld",
"command": "title {player} title {\"text\":\"Lucky find!\"}",
"commandChance": 100.0
}