This commit is contained in:
DaanV2
2021-07-01 16:56:10 +02:00
parent 851c0a82fd
commit 66015d42a4
22 changed files with 32 additions and 48 deletions

View File

@@ -12,9 +12,13 @@
"potions": {
"type": "array",
"description": "A list of potions that this entity can drink.",
"title": "Potions",
"items": {
"required": ["id", "chance", "filters"],
"additionalProperties": false,
"type": "object",
"description": "UNDOCUMENTATED: potions",
"title": "Potions",
"properties": {
"id": { "type": "integer", "default": -1, "description": "The registry ID of the potion to use", "title": "Id" },
"chance": {
@@ -27,14 +31,10 @@
},
"filters": {
"description": "The filters to use when determining if this potion can be selected.",
"$ref": "../../filters/filters.json",
"title": "Filters"
"$ref": "../../filters/filters.json"
}
},
"description": "UNDOCUMENTATED: potions",
"title": "Potions"
},
"title": "Potions"
}
}
}
}
}