Entity Loot Drops

Customize what items drop from Mobs, with powerful features like conditional drops, commands, and special effects.

File Details

EntityLootDrops-2.9

  • R
  • Oct 26, 2025
  • 154.91 KB
  • 42
  • 1.20.1
  • Forge

File Name

EntityLootDrops-2.9.jar

Supported Versions

  • 1.20.1

Curse Maven Snippet

Forge

implementation fg.deobf("curse.maven:entity-loot-drops-1232534:7154400")
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

New Features:

NBT Entity Data Conditional Drops.


Added ability to check entity NBT data before dropping items
Supports numeric, string, and boolean comparisons
Array indexing support for checking equipment (HandItems[0], ArmorItems[2])
Works with modded entity data (MMORPG stats, custom attributes, etc.)


Example Use Cases:
Drop rare items from high-level MMORPG mobs
Different drops based on mob equipment
Conditional drops for boss mobs with custom NBT tags
Integration with any mod that stores entity data


New Configuration Fields:
nbtEntityData - NBT path to check (e.g., "ForgeCaps.mmorpg:entity_data.level")
nbtDataCondition - Comparison operator (<, >, ==, !=, contains)
nbtDataValue - Value to compare against
nbtEntityDrop - Item to drop when condition is met
nbtEntityDropChance - Drop chance percentage
nbtEntityDropMin/Max - Amount range

 

Updated readme files and added examples of NBT Data Conditional Drops