2020-11-01 17:22:42 +01:00
{
"$schema" : "http://json-schema.org/draft-07/schema" ,
2021-04-04 13:52:35 +02:00
"$id" : "blockception.minecraft.behavior.entities.1.16.0.minecraft.behavior.nap" ,
2020-11-01 17:22:42 +01:00
"type" : "object" ,
2021-01-27 01:06:07 +01:00
"title" : "Nap 1.16.0" ,
2020-11-01 17:22:42 +01:00
"description" : "Allows the mob to move back into lava when on land." ,
"additionalProperties" : false ,
"properties" : {
2021-01-27 00:52:47 +01:00
"priority" : { "$ref" : "types/base_priority.json" } ,
"speed_multiplier" : { "$ref" : "types/base_speed_multiplier.json" } ,
2021-03-21 15:18:38 +01:00
"cooldown_max" : { "type" : "number" , "default" : 0 , "description" : "Maximum time in seconds the mob has to wait before using the goal again" , "title" : "Cooldown Max" } ,
"cooldown_min" : { "type" : "number" , "default" : 0 , "description" : "Minimum time in seconds the mob has to wait before using the goal again" , "title" : "Cooldown Min" } ,
2020-11-01 17:22:42 +01:00
"mob_detect_dist" : {
"type" : "number" ,
"default" : 6 ,
"description" : "The block distance in x and z that will be checked for mobs that this mob detects" ,
2021-03-21 15:18:38 +01:00
"title" : "Mob Detect Dist"
2020-11-01 17:22:42 +01:00
} ,
"mob_detect_height" : {
"type" : "number" ,
"default" : 6 ,
"description" : "The block distance in y that will be checked for mobs that this mob detects" ,
2021-03-21 15:18:38 +01:00
"title" : "Mob Detect Height"
2020-11-01 17:22:42 +01:00
} ,
2021-03-21 15:18:38 +01:00
"can_nap_filters" : { "$ref" : "../filters.json" , "description" : "UNDOCUMENTATED" , "title" : "Can Nap Filters" } ,
"wake_mob_exceptions" : { "$ref" : "../filters.json" , "description" : "UNDOCUMENTATED" , "title" : "Wake Mob Exceptions" }
2020-11-01 17:22:42 +01:00
}
}