auto: Formatted documents

This commit is contained in:
DaanV2
2021-05-18 23:32:44 +02:00
parent 6963d4eaab
commit 5b784a9cfc
400 changed files with 6276 additions and 1125 deletions

View File

@@ -10,7 +10,10 @@
"type": "object",
"description": "The list of items that can be used to increase the entity's temper and speed up the taming process",
"properties": {
"item": { "$ref": "../../../../general/item/identifier.json", "description": "Name of the item this entity likes and can be used to increase this entity's temper" },
"item": {
"$ref": "../../../../general/item/identifier.json",
"description": "Name of the item this entity likes and can be used to increase this entity's temper"
},
"temperMod": { "type": "number", "default": 0, "description": "The amount of temper this entity gains when fed this item" }
}
},
@@ -18,13 +21,21 @@
"type": "object",
"description": "The list of items that can be used to increase the entity's temper and speed up the taming process",
"properties": {
"item": { "$ref": "../../../../general/item/identifier.json", "description": "Name of the item this entity dislikes and will cause it to get angry if used while untamed" }
"item": {
"$ref": "../../../../general/item/identifier.json",
"description": "Name of the item this entity dislikes and will cause it to get angry if used while untamed"
}
}
}
},
"required": [],
"properties": {
"attemptTemperMod": { "type": "integer", "default": 5, "description": "The amount the entity's temper will increase when mounted", "title": "TODO Title" },
"attemptTemperMod": {
"type": "integer",
"default": 5,
"description": "The amount the entity's temper will increase when mounted",
"title": "TODO Title"
},
"autoRejectItems": {
"description": "The list of items that, if carried while interacting with the entity, will anger it",
"oneOf": [
@@ -43,8 +54,18 @@
],
"title": "TODO Title"
},
"maxTemper": { "type": "integer", "default": 100, "description": "The maximum value for the entity's random starting temper", "title": "TODO Title" },
"minTemper": { "type": "integer", "default": 0, "description": "The minimum value for the entity's random starting temper", "title": "TODO Title" },
"maxTemper": {
"type": "integer",
"default": 100,
"description": "The maximum value for the entity's random starting temper",
"title": "TODO Title"
},
"minTemper": {
"type": "integer",
"default": 0,
"description": "The minimum value for the entity's random starting temper",
"title": "TODO Title"
},
"ride_text": { "type": "string", "description": "The text that shows in the riding interact button", "title": "TODO Title" },
"tame_event": { "$ref": "../types/event.json", "description": "Event that triggers when the entity becomes tamed", "title": "TODO Title" }
}