Files
minecraft-bedrock-json-schemas/source/behavior/entities/1.8.0/components/minecraft.equipment.json

32 lines
1.1 KiB
JSON

{
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.equipment",
"type": "object",
"title": "Equipment 1.8.0",
"description": "Sets the equipment table to use for the entity.",
"additionalProperties": false,
"required": [],
"properties": {
"table": {
"title": "Table",
"description": "The file path to the equipment table, relative to the behavior pack's root.",
"$ref": "../../../../general/loot_table/identifier.json"
},
"slot_drop_chance": {
"type": "array",
"title": "Slot Drop Chance",
"description": "A list of slots with the chance to drop an equipped item from that slot",
"items": {
"type": "object",
"title": "Slot Drop Chance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"drop_chance": { "type": "number", "title": "Drop Chance" },
"slot": { "type": "string", "title": "Slot", "pattern": "slot\\.[a-z\\.0-9]+" }
}
}
}
}
}