Files
minecraft-bedrock-json-schemas/behaviour/entities/1.8.0/behaviors/minecraft.behavior.move_towards_restriction.json
2020-11-01 17:22:42 +01:00

25 lines
939 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.move_towards_restriction",
"type": "object",
"title": "Behavior.move_towards_restriction 1.8.0",
"additionalProperties": false,
"description": "Allows Guardians, Iron Golems and Villagers to move within their pre-defined area that the mob should be restricted to. Other mobs don't have a restriction defined.",
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"control_flags": {
"type": "array",
"items": {
"type": "string",
"enum": ["move", "look"],
"description": "TODO description: control flags",
"title": "Control Flags"
},
"description": "TODO description: control flags",
"title": "Control Flags"
}
}
}