Added celebrate_survive & move_outdoors

This commit is contained in:
DaanV2
2022-02-09 13:49:31 +01:00
parent 801f7ee6d9
commit 511e12c371
4 changed files with 109 additions and 48 deletions

View File

@@ -5,12 +5,8 @@
"title": "Tempt",
"additionalProperties": false,
"properties": {
"priority": {
"$ref": "types/priority.json"
},
"speed_multiplier": {
"$ref": "types/speed_multiplier.json"
},
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"can_get_scared": {
"type": "boolean",
"default": false,
@@ -37,6 +33,27 @@
},
"title": "Items"
},
"sound_interval": {
"description": "The interval in ticks between playing the sound",
"title": "Sound Interval",
"oneOf": [
{
"type": "number",
"minimum": 0
},
{
"items": [
{ "type": "integer", "minimum": 0, "title": "Minimum" },
{ "type": "integer", "minimum": 0, "title": "Maximum" }
]
}
]
},
"tempt_sound": {
"type": "string",
"description": "Sound to play while the mob is being tempted.",
"title": "Tempt Sound"
},
"within_radius": {
"type": "number",
"default": 0,