Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/break_blocks.json
Xterionix 822ed538f9 Some more misc fixes (#295)
* - Add mob effects enum

* - Add biome and biome tags to enum

* - Fix feature rules only showing with 1.13.0 format version

* - Replace 1.20.41 -> 1.20.80
- Make certain format versions restricted to 1.10.0

* - Remove example stick (having this here was annoying)

* - Fix

* - Remove empty sounds example

* - Misc fixes for entity components
2024-06-28 21:06:53 +02:00

24 lines
613 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.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": []
}
]
}