* Updating UnDocumented Updating Undocumented and Fix Component errors * Update source/behavior/entities/format/components/is_stackable.json * Update source/behavior/entities/format/components/is_stackable.json --------- Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>
27 lines
727 B
JSON
27 lines
727 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": "Range of the amount of damage the melee follow_range deals. A negative value can heal the entity instead of hurting it.",
|
|
"title": "Value"
|
|
},
|
|
"max": {
|
|
"type": "integer",
|
|
"description": "Duration, in seconds, of the status ailment applied to the damaged entity.",
|
|
"title": "Max"
|
|
}
|
|
},
|
|
"examples": [
|
|
{
|
|
"value": 16,
|
|
"max": 48
|
|
}
|
|
]
|
|
}
|