auto: Formatted documents
This commit is contained in:
@@ -8,15 +8,35 @@
|
||||
"required": [],
|
||||
"properties": {
|
||||
"priority": { "$ref": "types/base_priority.json" },
|
||||
"avoid_water": { "type": "boolean", "default": false, "description": "If true, the mob will not go into water blocks when going towards a mount", "title": "Avoid Water" },
|
||||
"avoid_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the mob will not go into water blocks when going towards a mount",
|
||||
"title": "Avoid Water"
|
||||
},
|
||||
"mount_distance": {
|
||||
"type": "number",
|
||||
"default": -1,
|
||||
"description": "This is the distance the mob needs to be, in blocks, from the desired mount to mount it. If the value is below 0, the mob will use its default attack distance",
|
||||
"title": "Mount Distance"
|
||||
},
|
||||
"start_delay": { "type": "integer", "default": 0, "description": "Time the mob will wait before starting to move towards the mount", "title": "Start Delay" },
|
||||
"target_needed": { "type": "boolean", "default": false, "description": "If true, the mob will only look for a mount if it has a target", "title": "Target Needed" },
|
||||
"within_radius": { "type": "number", "default": 0, "description": "Distance in blocks within which the mob will look for a mount", "title": "Within Radius" }
|
||||
"start_delay": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "Time the mob will wait before starting to move towards the mount",
|
||||
"title": "Start Delay"
|
||||
},
|
||||
"target_needed": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the mob will only look for a mount if it has a target",
|
||||
"title": "Target Needed"
|
||||
},
|
||||
"within_radius": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Distance in blocks within which the mob will look for a mount",
|
||||
"title": "Within Radius"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,11 +24,19 @@
|
||||
"on_home": {
|
||||
"title": "On Home",
|
||||
"description": "Event to run when this mob gets home.",
|
||||
"oneOf": [{ "type": "string" }, { "type": "object", "$ref": "../types/trigger.json" }, { "type": "array", "items": { "$ref": "../types/trigger.json" } }]
|
||||
"oneOf": [
|
||||
{ "type": "string" },
|
||||
{ "type": "object", "$ref": "../types/trigger.json" },
|
||||
{ "type": "array", "items": { "$ref": "../types/trigger.json" } }
|
||||
]
|
||||
},
|
||||
"on_failed": {
|
||||
"description": "Event to run when this mob gets home.",
|
||||
"oneOf": [{ "type": "string" }, { "type": "object", "$ref": "../types/trigger.json" }, { "type": "array", "items": { "$ref": "../types/trigger.json" } }],
|
||||
"oneOf": [
|
||||
{ "type": "string" },
|
||||
{ "type": "object", "$ref": "../types/trigger.json" },
|
||||
{ "type": "array", "items": { "$ref": "../types/trigger.json" } }
|
||||
],
|
||||
"title": "On Failed"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -27,7 +27,17 @@
|
||||
"description": "The number of blocks each tick that the mob will check within it's search range and height for a valid block to move to. A value of 0 will have the mob check every block within range in one tick",
|
||||
"title": "Search Count"
|
||||
},
|
||||
"search_height": { "type": "integer", "default": 1, "description": "Height in blocks the mob will look for turtle eggs to move towards", "title": "Search Height" },
|
||||
"search_range": { "type": "integer", "default": 0, "description": "The distance in blocks it will look for turtle eggs to move towards", "title": "Search Range" }
|
||||
"search_height": {
|
||||
"type": "integer",
|
||||
"default": 1,
|
||||
"description": "Height in blocks the mob will look for turtle eggs to move towards",
|
||||
"title": "Search Height"
|
||||
},
|
||||
"search_range": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "The distance in blocks it will look for turtle eggs to move towards",
|
||||
"title": "Search Range"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user