Moved to source folder

This commit is contained in:
DaanV2
2021-02-01 18:39:12 +01:00
parent c434801daf
commit ac0f3d12d6
1000 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,43 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.random_sitting",
"type": "object",
"title": "Random sitting 1.8.0",
"description": "Allows the mob to randomly sit for a duration.",
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"cooldown": {
"type": "number",
"default": 0,
"description": "Time in seconds the mob has to wait before using the goal again",
"title": "Cooldown"
},
"cooldown_time": {
"type": "number",
"default": 0,
"description": "Time in seconds the mob has to wait before using the goal again",
"title": "Cooldown time"
},
"min_sit_time": {
"type": "number",
"default": 10,
"description": "The minimum amount of time in seconds before the mob can stand back up",
"title": "Min sit time"
},
"start_chance": {
"type": "number",
"default": 0.1,
"description": "This is the chance that the mob will start this goal, from 0 to 1",
"title": "Start chance"
},
"stop_chance": {
"type": "number",
"default": 0.3,
"description": "This is the chance that the mob will stop this goal, from 0 to 1",
"title": "Stop chance"
}
}
}