Files
minecraft-bedrock-json-schemas/behaviour/entities/1.8.0/components/minecraft.break_blocks.json
2020-11-01 17:22:42 +01:00

20 lines
636 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.break_blocks",
"type": "object",
"title": "Behavior.break_blocks 1.8.0",
"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"
}
}
}
}