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.scheduler" ,
2020-11-01 17:22:42 +01:00
"description" : "Defines a list of items the mob wants to share or pick up. Each item must have the following parameters:" ,
"type" : "object" ,
"title" : "Scheduler 1.16.0" ,
"additionalProperties" : false ,
"required" : [ ] ,
"properties" : {
2021-03-21 15:18:38 +01:00
"min_delay_secs" : { "type" : "integer" , "description" : "UNDOCUMENTATED" , "title" : "UNDOCUMENTATED" , "minimum" : 0 } ,
"max_delay_secs" : { "type" : "integer" , "description" : "UNDOCUMENTATED" , "title" : "UNDOCUMENTATED" , "minimum" : 0 } ,
2020-11-01 17:22:42 +01:00
"scheduled_events" : {
"type" : "array" ,
"description" : "The list of triggers that fire when the conditions match the given filter criteria. If any filter criteria overlap the first defined event will be picked." ,
2021-03-21 15:18:38 +01:00
"title" : "Scheduled Events" ,
2020-11-01 17:22:42 +01:00
"items" : {
"additionalProperties" : false ,
"type" : "object" ,
"description" : "UNDOCUMENTATED" ,
"title" : "UNDOCUMENTATED" ,
2021-06-03 14:02:28 +02:00
"properties" : { "filters" : { "$ref" : "../../filters/filters.json" } , "event" : { "$ref" : "../types/event.json" } }
2020-11-01 17:22:42 +01:00
}
}
}
}