2021-10-08 12:59:03 +02:00
|
|
|
{
|
2021-10-08 13:04:13 +02:00
|
|
|
"$id": "blockception.minecraft.behavior.entities.minecraft.follow_range",
|
2021-10-08 12:59:03 +02:00
|
|
|
"type": "object",
|
2021-10-08 13:04:13 +02:00
|
|
|
"title": "Follow Range",
|
2023-08-13 23:21:03 -07:00
|
|
|
"description": "Defines the range of blocks that a mob will pursue a target.",
|
2021-10-08 12:59:03 +02:00
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [],
|
|
|
|
|
"properties": {
|
2021-10-11 18:10:42 +02:00
|
|
|
"value": {
|
|
|
|
|
"type": "integer",
|
2024-03-23 11:20:51 +05:00
|
|
|
"description": "The distance this entity can be from the target when following it",
|
2021-10-11 18:10:42 +02:00
|
|
|
"title": "Value"
|
|
|
|
|
},
|
|
|
|
|
"max": {
|
|
|
|
|
"type": "integer",
|
2024-03-23 11:20:51 +05:00
|
|
|
"description": "Maximum distance this entity can be from the target when following it",
|
2021-10-11 18:10:42 +02:00
|
|
|
"title": "Max"
|
|
|
|
|
}
|
2021-10-08 12:59:03 +02:00
|
|
|
},
|
2021-10-11 18:10:42 +02:00
|
|
|
"examples": [
|
|
|
|
|
{
|
2023-08-13 23:21:03 -07:00
|
|
|
"value": 16,
|
|
|
|
|
"max": 48
|
2021-10-11 18:10:42 +02:00
|
|
|
}
|
|
|
|
|
]
|
2021-10-08 12:59:03 +02:00
|
|
|
}
|