This commit is contained in:
DaanV2
2021-06-06 13:00:25 +02:00
parent 4e62c0237c
commit b0d9e9146c
105 changed files with 33270 additions and 173 deletions

View File

@@ -18,7 +18,7 @@
},
"enviroment_requirements": {
"type": "object",
"description": "A nearby block requirements to get the entity into the 'love' state.",
"description": "A nearby block requirements to get the entity into the `love` state.",
"properties": {
"blocks": {
"description": "The block types required nearby for the entity to breed.",
@@ -68,14 +68,14 @@
"title": "Breed Cooldown"
},
"breed_items": {
"description": "The list of items that can be used to get the entity into the 'love' state",
"description": "The list of items that can be used to get the entity into the `love` state",
"title": "Breed Items",
"oneOf": [
{
"type": "array",
"items": {
"type": "string",
"description": "An item that can be used to get the entity into the 'love' state",
"description": "An item that can be used to get the entity into the `love` state",
"$ref": "../../../../general/item/identifier.json",
"title": "TODO Title"
}
@@ -96,14 +96,14 @@
"description": "Determines how likely the baby of parents with the same variant will deny that variant and take a random variant within the given range instead.",
"additionalProperties": false,
"properties": {
"chance": { "type": "number", "default": 0, "description": "The percentage chance of denying the parents' variant.", "title": "Chance" },
"chance": { "type": "number", "default": 0, "description": "The percentage chance of denying the parents` variant.", "title": "Chance" },
"max_variant": { "type": "integer", "default": 0, "description": "The inclusive maximum of the variant range.", "title": "Max Variant" },
"min_variant": { "type": "integer", "default": 0, "description": "The inclusive minimum of the variant range.", "title": "Min Variant" }
},
"title": "Deny Parents Variant"
},
"environment_requirements": {
"description": "The list of nearby block requirements to get the entity into the 'love' state.",
"description": "The list of nearby block requirements to get the entity into the `love` state.",
"oneOf": [
{ "type": "object", "$ref": "#/definitions/enviroment_requirements" },
{ "type": "array", "items": { "$ref": "#/definitions/enviroment_requirements" } }