Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/break_blocks.json
2021-10-11 18:10:42 +02:00

24 lines
621 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.behavior.break_blocks",
"type": "object",
"title": "Break Blocks",
"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",
"items": {
"$ref": "../../../../general/blocks_item.json"
}
}
},
"examples": [
{
"breakable_blocks": []
}
]
}