2020-11-01 17:22:42 +01:00
{
"$schema" : "http://json-schema.org/draft-07/schema" ,
"$id" : "blockception.minecraft.behaviour.entities.1.13.0.minecraft.behavior.go_home" ,
"type" : "object" ,
2021-03-21 15:18:38 +01:00
"title" : "Go Home 1.13.0" ,
2020-11-01 17:22:42 +01:00
"description" : "Allows the mob to move back to the position they were spawned." ,
"additionalProperties" : false ,
"required" : [ ] ,
"properties" : {
2021-01-27 00:52:47 +01:00
"priority" : { "$ref" : "types/base_priority.json" } ,
"speed_multiplier" : { "$ref" : "types/base_speed_multiplier.json" } ,
2020-11-01 17:22:42 +01:00
"goal_radius" : {
"type" : "number" ,
"default" : 0.5 ,
"description" : "Distance in blocks within the mob considers it has reached the goal. This is the \"wiggle room\" to stop the AI from bouncing back and forth trying to reach a specific spot" ,
2021-03-21 15:18:38 +01:00
"title" : "Goal Radius"
2020-11-01 17:22:42 +01:00
} ,
"interval" : {
"type" : "integer" ,
"default" : 120 ,
"description" : "A random value to determine when to randomly move somewhere. This has a 1/interval chance to choose this goal" ,
"title" : "Interval"
} ,
"on_home" : {
2021-03-21 15:18:38 +01:00
"title" : "On Home" ,
2020-11-01 17:22:42 +01:00
"description" : "Event to run when this mob gets home." ,
2021-03-21 15:18:38 +01:00
"oneOf" : [ { "type" : "string" } , { "type" : "object" , "$ref" : "../types/trigger.json" } , { "type" : "array" , "items" : { "$ref" : "../types/trigger.json" } } ]
2020-11-01 17:22:42 +01:00
} ,
"on_failed" : {
"description" : "Event to run when this mob gets home." ,
2021-03-21 15:18:38 +01:00
"oneOf" : [ { "type" : "string" } , { "type" : "object" , "$ref" : "../types/trigger.json" } , { "type" : "array" , "items" : { "$ref" : "../types/trigger.json" } } ] ,
"title" : "On Failed"
2020-11-01 17:22:42 +01:00
}
}
}