Removed minecraft.

This commit is contained in:
DaanV2
2021-10-08 13:18:16 +02:00
parent c8c0a5bd7f
commit ec608d9fb7
176 changed files with 173 additions and 173 deletions

View File

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