Files
minecraft-bedrock-json-schemas/source/behaviour/entities/1.8.0/behaviors/minecraft.behavior.lay_down.json

25 lines
872 B
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.lay_down",
"description": "Allows mobs to lay down at times.",
"type": "object",
2021-01-27 01:06:07 +01:00
"title": "Lay down 1.8.0",
2020-11-01 17:22:42 +01:00
"additionalProperties": false,
"required": [],
"properties": {
2020-12-12 00:09:25 +01:00
"priority": { "$ref": "./types/base_priority.json" },
2020-11-01 17:22:42 +01:00
"interval": {
"type": "integer",
"default": 120,
"description": "A random value to determine at what intervals something can occur. This has a 1/interval chance to choose this goal",
"title": "TODO title"
},
"random_stop_interval": {
"type": "integer",
"default": 120,
"description": "A random value in which the goal can use to pull out of the behavior. This is a 1/interval chance to play the sound",
"title": "TODO title"
}
}
}