Skip to content

Drop Information

Brian Wuest edited this page Jun 28, 2020 · 2 revisions

This page contains the full property information for the "additionalDrops" section of the boss and minion information sections. An "additionalDrop" object contains the following properties.

Please note that casing is important. If you miss capitalization on any of the properties they will not be loaded correctly.

  • item (Required): This is the fully qualified domain:path name of the item to drop. Examples: minecraft:stone
  • minDrops (Required): This is the minimum number of items to drop when creating drops.
  • maxDrops (Required): This is the maximum number of items to drop when creating drops.
  • dropChance (Optional): This is a percentage chance of dropping the item specified when the monster dies.
  • nbt (Optional): This is the custom NBT data to associate with the item stack.
{
    "item": "minecraft:gold_ingot",
    "minDrops": "1",
    "maxDrops": "5",
    "dropChance": 75
}
{
    "item": "from_the_depths:totem_of_summoning",
    "minDrops": "1",
    "maxDrops": "1",
    "dropChance": 75,
    "nbt": {
        "spawn_info": "Custom_Creeper"
    }
}
Clone this wiki locally