* - Misc entity fixes * - Update entity sensor * Update source/behavior/entities/format/behaviors/dig.json Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com> * - Change entity sensor range property * - Fix --------- Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>
27 lines
668 B
JSON
27 lines
668 B
JSON
{
|
|
"$id": "blockception.minecraft.behavior.entities.minecraft.follow_range",
|
|
"type": "object",
|
|
"title": "Follow Range",
|
|
"description": "Defines the range of blocks that a mob will pursue a target.",
|
|
"additionalProperties": false,
|
|
"required": [],
|
|
"properties": {
|
|
"value": {
|
|
"type": "integer",
|
|
"description": "The distance this entity can be from the target when following it",
|
|
"title": "Value"
|
|
},
|
|
"max": {
|
|
"type": "integer",
|
|
"description": "Maximum distance this entity can be from the target when following it",
|
|
"title": "Max"
|
|
}
|
|
},
|
|
"examples": [
|
|
{
|
|
"value": 16,
|
|
"max": 48
|
|
}
|
|
]
|
|
}
|