2020-11-01 17:22:42 +01:00
{
"$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" : {
2020-12-12 00:09:25 +01:00
"priority" : { "$ref" : "./types/base_priority.json" } ,
"speed_multiplier" : { "$ref" : "./types/base_speed_multiplier.json" } ,
2020-11-01 17:22:42 +01:00
"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"
}
}
}