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

27 lines
668 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.follow_range",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Follow Range",
"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",
"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",
"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": [
{
"value": 16,
"max": 48
2021-10-11 18:10:42 +02:00
}
]
2021-10-08 12:59:03 +02:00
}