Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/block_climber.json

32 lines
1.1 KiB
JSON
Raw Normal View History

2021-09-21 22:35:40 +02:00
{
2021-10-08 13:04:13 +02:00
"$id": "blockception.minecraft.behavior.entities.minecraft.block_climber",
2021-09-21 22:35:40 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Block Climber",
2021-09-21 22:35:40 +02:00
"additionalProperties": false,
"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"
}
}
}
2021-09-21 22:35:40 +02:00
}