Processed updated docuemtnation from minecraft
This commit is contained in:
@@ -3,6 +3,29 @@
|
||||
"type": "object",
|
||||
"title": "Block Climber",
|
||||
"additionalProperties": false,
|
||||
"description": "Allows the player to detect and maneuver on the scaffolding block.",
|
||||
"properties": {}
|
||||
"description": "Fires off a specified event when a block in the block list is broken within the sensor range.",
|
||||
"properties": {
|
||||
"on_break": {
|
||||
"title": "On Break",
|
||||
"type": "array",
|
||||
"description": "List of blocks to watch for being broken to fire off a specified event. If a block is in multiple lists, multiple events will fire.",
|
||||
"items": {
|
||||
"$ref": "../../../../general/block/identifier.json"
|
||||
}
|
||||
},
|
||||
"sensor_radius": {
|
||||
"title": "Sensor Radius",
|
||||
"type": "number",
|
||||
"default": 16.0,
|
||||
"description": "The maximum radial distance in which a specified block can be detected. The biggest radius is 32.0."
|
||||
},
|
||||
"sources": {
|
||||
"title": "Sources",
|
||||
"type": "array",
|
||||
"description": "List of sources that break the block to listen for. If none are specified, all block breaks will be detected.",
|
||||
"items": {
|
||||
"$ref": "../../../../general/block/identifier.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,9 +20,9 @@
|
||||
"container_type": {
|
||||
"type": "string",
|
||||
"default": "none",
|
||||
"description": "Type of container this entity has. Can be horse, minecart_chest, minecart_hopper, inventory, container or hopper",
|
||||
"description": "Type of container this entity has. Can be horse, minecart_chest, chest_boat, minecart_hopper, inventory, container or hopper",
|
||||
"title": "Container Type",
|
||||
"enum": ["horse", "minecart_chest", "minecart_hopper", "inventory", "container", "hopper"]
|
||||
"enum": ["horse", "minecart_chest", "chest_boat", "minecart_hopper", "inventory", "container", "hopper"]
|
||||
},
|
||||
"inventory_size": {
|
||||
"type": "integer",
|
||||
|
||||
Reference in New Issue
Block a user