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

17 lines
545 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",
"items": { "$ref": "../../../../general/blocks_item.json" }
}
}
}