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

25 lines
941 B
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
2021-04-04 13:52:35 +02:00
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.equipment",
2020-11-01 17:22:42 +01:00
"type": "object",
"title": "Equipment 1.8.0",
"additionalProperties": false,
"required": [],
"properties": {
2021-03-21 15:18:38 +01:00
"table": { "type": "string", "pattern": ".*\\.json$", "description": "TODO description: table", "title": "Table" },
2020-11-01 17:22:42 +01:00
"slot_drop_chance": {
"type": "array",
2021-03-21 15:18:38 +01:00
"title": "Slot Drop Chance",
2020-11-01 17:22:42 +01:00
"description": "A list of slots with the chance to drop an equipped item from that slot",
"items": {
"type": "object",
2021-03-21 15:18:38 +01:00
"title": "Slot Drop Chance",
2020-11-01 17:22:42 +01:00
"description": "UNDOCUMENTATED",
"additionalProperties": false,
2021-03-21 15:18:38 +01:00
"properties": { "drop_chance": { "type": "number", "title": "Drop Chance" }, "slot": { "type": "string", "title": "Slot", "pattern": "slot\\.[a-z\\.0-9]+" } }
2020-11-01 17:22:42 +01:00
}
}
},
"description": "TODO description: "
}