Files
minecraft-bedrock-json-schemas/behaviour/entities/1.8.0/behaviors/minecraft.behavior.follow_owner.json
2021-01-27 00:52:47 +01:00

28 lines
915 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.follow_owner",
"type": "object",
"title": "Behavior.follow_owner 1.8.0",
"description": "Allows the mob to follow their parent around.",
"additionalProperties": false,
"required": [],
"properties": {
"priority": {
"$ref": "types/base_priority.json"
},
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"start_distance": {
"type": "number",
"default": 10,
"description": "The distance in blocks that the owner can be away from this mob before it starts following it",
"title": "TODO title"
},
"stop_distance": {
"type": "number",
"default": 2,
"description": "The distance in blocks this mob will stop from its owner while following it",
"title": "TODO title"
}
}
}