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

27 lines
727 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": "Range of the amount of damage the melee follow_range deals. A negative value can heal the entity instead of hurting it.",
2021-10-11 18:10:42 +02:00
"title": "Value"
},
"max": {
"type": "integer",
"description": "Duration, in seconds, of the status ailment applied to the damaged entity.",
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
}