2020-11-01 17:22:42 +01:00
{
2021-04-04 13:52:35 +02:00
"$id" : "blockception.minecraft.behavior.entities.1.16.0.minecraft.despawn" ,
2020-11-01 17:22:42 +01:00
"type" : "object" ,
"title" : "Despawn 1.16.0" ,
"description" : "Despawns the Actor when the despawn rules or optional filters evaluate to true." ,
"additionalProperties" : false ,
"properties" : {
"despawn_from_chance" : {
"type" : "boolean" ,
"default" : true ,
"description" : "Determines if \"min_range_random_chance\" is used in the standard despawn rules" ,
2021-03-21 15:18:38 +01:00
"title" : "Despawn From Chance"
2020-11-01 17:22:42 +01:00
} ,
"despawn_from_distance" : {
"type" : "object" ,
"additionalProperties" : false ,
"properties" : {
2021-05-18 23:32:44 +02:00
"max_distance" : {
"type" : "integer" ,
"default" : 128 ,
"description" : "Maximum distance for standard despawn rules to instantly despawn the mob." ,
"title" : "Max Distance"
} ,
"min_distance" : {
"type" : "integer" ,
"default" : 32 ,
"description" : "Minimum distance for standard despawn rules to try to despawn the mob." ,
"title" : "Min Distance"
}
2020-11-01 17:22:42 +01:00
} ,
"description" : "TODO description" ,
2021-03-21 15:18:38 +01:00
"title" : "TODO Title"
2020-11-01 17:22:42 +01:00
} ,
"despawn_from_inactivity" : {
"type" : "boolean" ,
"default" : true ,
"description" : "Determines if the \"min_range_inactivity_timer\" is used in the standard despawn rules." ,
2021-03-21 15:18:38 +01:00
"title" : "Despawn From Inactivity"
2020-11-01 17:22:42 +01:00
} ,
"despawn_from_simulation_edge" : {
"type" : "boolean" ,
"default" : true ,
"description" : "Determines if the mob is instantly despawned at the edge of simulation distance in the standard despawn rules." ,
2021-03-21 15:18:38 +01:00
"title" : "Despawn From Simulation Edge"
2020-11-01 17:22:42 +01:00
} ,
"filters" : {
2021-06-03 14:02:28 +02:00
"$ref" : "../../filters/filters.json" ,
2020-11-01 17:22:42 +01:00
"description" : "The list of conditions that must be satisfied before the Actor is despawned. If a filter is defined then standard despawn rules are ignored." ,
"title" : "Filters"
} ,
"min_range_inactivity_timer" : {
"type" : "integer" ,
"default" : 30 ,
"description" : "The amount of time in seconds that the mob must be inactive." ,
2021-03-21 15:18:38 +01:00
"title" : "Min Range Inactivity Timer"
2020-11-01 17:22:42 +01:00
} ,
2021-05-18 23:32:44 +02:00
"min_range_random_chance" : {
"type" : "integer" ,
"default" : 800 ,
"description" : "A random chance between 1 and the given value." ,
"title" : "Min Range Random Chance"
} ,
2020-11-01 17:22:42 +01:00
"remove_child_entities" : {
"type" : "boolean" ,
"default" : false ,
"description" : "If true, all entities linked to this entity in a child relationship (eg. leashed) will also be despawned." ,
2021-03-21 15:18:38 +01:00
"title" : "Remove Child Entities"
2020-11-01 17:22:42 +01:00
}
}
}