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.8.0.minecraft.teleport" ,
2020-11-01 17:22:42 +01:00
"description" : "Defines an entity's teleporting behavior." ,
"type" : "object" ,
"title" : "Teleport 1.8.0" ,
"additionalProperties" : false ,
"required" : [ ] ,
"properties" : {
"dark_teleport_chance" : {
"type" : "number" ,
"default" : 0.01 ,
"description" : "Modifies the chance that the entity will teleport if the entity is in darkness" ,
2021-03-21 15:18:38 +01:00
"title" : "TODO Title"
2020-11-01 17:22:42 +01:00
} ,
"light_teleport_chance" : {
"type" : "number" ,
"default" : 0.01 ,
"description" : "Modifies the chance that the entity will teleport if the entity is in daylight" ,
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
"max_random_teleport_time" : { "type" : "number" , "default" : 20 , "description" : "Maximum amount of time in seconds between random teleports" , "title" : "TODO Title" } ,
"min_random_teleport_time" : { "type" : "number" , "default" : 0 , "description" : "Minimum amount of time in seconds between random teleports" , "title" : "TODO Title" } ,
2020-11-01 17:22:42 +01:00
"random_teleport_cube" : {
"type" : "array" ,
"default" : [ 32.0 , 16.0 , 32.0 ] ,
"items" : [
2021-03-21 15:18:38 +01:00
{ "type" : "number" , "title" : "A" } ,
{ "type" : "number" , "title" : "B" } ,
{ "type" : "number" , "title" : "C" }
2020-11-01 17:22:42 +01:00
] ,
"description" : "Entity will teleport to a random position within the area defined by this cube" ,
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
"random_teleports" : { "type" : "boolean" , "default" : true , "description" : "If true, the entity will teleport randomly" , "title" : "TODO Title" } ,
"target_distance" : { "type" : "number" , "default" : 16 , "description" : "Maximum distance the entity will teleport when chasing a target" , "title" : "TODO Title" } ,
2020-11-01 17:22:42 +01:00
"target_teleport_chance" : {
"type" : "number" ,
"default" : 1 ,
"description" : "The chance that the entity will teleport between 0.0 and 1.0. 1.0 means 100%" ,
2021-03-21 15:18:38 +01:00
"title" : "TODO Title"
2020-11-01 17:22:42 +01:00
}
}
}