Entity Documentation - minecraft:equipment

minecraft:equipment sets the equipment table to use for the entity.

Parameters

Name Default Value Type Description
slot_drop_chance not set List A list of slots with the chance to drop an equipped item from that slot.
table not set String The file path to the equipment table, relative to the behavior pack's root.

Example

"minecraft:equipment":{
    "table": "loot_tables/entities/piglin_brute_gear.json"
}

Vanilla entities examples

pillager

"minecraft:equipment": {
          "table": "loot_tables/entities/pillager_captain_equipment.json",
          "slot_drop_chance": [
            {
              "slot": "slot.armor.chest",
              "drop_chance": 1.0
            }
          ]
        }

Vanilla entities using minecraft:equipment