2020-11-01 17:22:42 +01:00
{
"$schema" : "http://json-schema.org/draft-07/schema" ,
"$id" : "blockception.minecraft.behaviour.entities.1.16.0.minecraft.behavior.tempt" ,
"description" : "Allows the mob to be tempted by food they like." ,
"type" : "object" ,
2021-01-27 01:06:07 +01:00
"title" : "Tempt 1.16.0" ,
2020-11-01 17:22:42 +01:00
"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
"can_get_scared" : {
"type" : "boolean" ,
"default" : false ,
"description" : "If true, the mob can stop being tempted if the player moves too fast while close to this mob" ,
2021-03-21 15:18:38 +01:00
"title" : "TODO Title"
2020-11-01 17:22:42 +01:00
} ,
2021-03-21 15:18:38 +01:00
"can_tempt_while_ridden" : { "type" : "boolean" , "title" : "Can Tempt While Ridden" , "description" : "UNDOCUMENTATED" } ,
"can_tempt_vertically" : { "type" : "boolean" , "title" : "Can Tempt Vertically" , "description" : "UNDOCUMENTATED" } ,
"items" : { "type" : "array" , "description" : "List of items this mob is tempted by" , "items" : { "$ref" : "../../../../general/item/identifier.json" } , "title" : "TODO Title" } ,
"within_radius" : { "type" : "number" , "default" : 0 , "description" : "Distance in blocks this mob can get tempted by a player holding an item they like" , "title" : "TODO Title" }
2020-11-01 17:22:42 +01:00
}
}