* - 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
24 lines
613 B
JSON
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": []
|
|
}
|
|
]
|
|
}
|