2020-11-01 17:22:42 +01:00
{
2021-04-04 13:52:35 +02:00
"$id" : "blockception.minecraft.behavior.entities.1.8.0.minecraft.behavior.mingle" ,
2020-11-01 17:22:42 +01:00
"description" : "Allows an entity to go to the village bell and mingle with other entities." ,
"type" : "object" ,
2021-01-27 01:06:07 +01:00
"title" : "Mingle 1.8.0" ,
2020-11-01 17:22:42 +01:00
"additionalProperties" : false ,
"required" : [ ] ,
"properties" : {
2021-06-03 14:11:45 +02:00
"priority" : { "$ref" : "types/priority.json" } ,
"speed_multiplier" : { "$ref" : "types/speed_multiplier.json" } ,
2021-05-18 23:32:44 +02:00
"cooldown_time" : {
"type" : "number" ,
"default" : 0 ,
"description" : "Time in seconds the mob has to wait before using the goal again" ,
"title" : "Cooldown Time"
} ,
"duration" : {
"type" : "number" ,
"default" : 1 ,
"description" : "Amount of time in seconds that the entity will chat with another entity" ,
"title" : "Duration"
} ,
2020-11-01 17:22:42 +01:00
"mingle_distance" : {
"type" : "number" ,
"default" : 2.0 ,
"description" : "The distance from its partner that this entity will mingle. If the entity type is not the same as the entity, this value needs to be identical on both entities." ,
2021-03-21 15:18:38 +01:00
"title" : "Mingle Distance"
2020-11-01 17:22:42 +01:00
} ,
"mingle_partner_type" : {
"description" : "The entity type that this entity is allowed to mingle with" ,
2021-03-21 15:18:38 +01:00
"title" : "Mingle Partner Type" ,
2021-05-18 23:32:44 +02:00
"oneOf" : [
{ "type" : "array" , "items" : { "description" : "The entity type that this entity is allowed to mingle with" , "type" : "string" } } ,
{ "type" : "string" }
]
2020-11-01 17:22:42 +01:00
}
}
}