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

24 lines
621 B
JSON
Raw Normal View History

2021-10-08 12:59:03 +02:00
{
2021-10-08 13:04:13 +02:00
"$id": "blockception.minecraft.behavior.entities.minecraft.behavior.break_blocks",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Break Blocks",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"description": "Specifies the blocks that this entity can break as it moves around.",
"required": [],
"properties": {
"breakable_blocks": {
"type": "array",
"title": "Breakable Blocks",
"description": "A list of the blocks that can be broken as this entity moves around",
2021-10-11 18:10:42 +02:00
"items": {
"$ref": "../../../../general/blocks_item.json"
}
2021-10-08 12:59:03 +02:00
}
2021-10-11 18:10:42 +02:00
},
"examples": [
{
"breakable_blocks": []
}
]
2021-10-08 12:59:03 +02:00
}