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

@@ -17,7 +17,7 @@
"title": "TODO Title"
},
"feed_items": {
"description": "List of items that can be fed to the entity. Includes 'item' for the item name and 'growth' to define how much time it grows up by",
"description": "List of items that can be fed to the entity. Includes `item` for the item name and `growth` to define how much time it grows up by",
"oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }],
"title": "TODO Title"
},

View File

@@ -33,7 +33,7 @@
"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" } }, { "type": "string" }]
},
@@ -50,7 +50,7 @@
"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" }
},
@@ -58,10 +58,10 @@
},
"environment_requirements": {
"type": "array",
"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.",
"items": {
"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": {
"type": "array",

View File

@@ -78,7 +78,7 @@
"swing": {
"type": "boolean",
"default": false,
"description": "If true, the player will do the 'swing' animation when interacting with this entity.",
"description": "If true, the player will do the `swing` animation when interacting with this entity.",
"title": "Swing"
},
"transform_to_item": {

View File

@@ -163,7 +163,7 @@
"description": "If true, the projectile will be treated like a splash potion",
"title": "Splash Potion"
},
"splash_range": { "type": "number", "default": 4, "description": "Radius in blocks of the 'splash' effect", "title": "Splash Range" },
"splash_range": { "type": "number", "default": 4, "description": "Radius in blocks of the `splash` effect", "title": "Splash Range" },
"uncertainty_base": {
"type": "number",
"default": 0,

View File

@@ -9,17 +9,17 @@
"properties": {
"all_of": {
"title": "All Of",
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
"description": "All tests in an `all_of` group must pass in order for the group to pass.",
"$ref": "#/definitions/groups_spec"
},
"any_of": {
"title": "Any Of",
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
"description": "One or more tests in an `any_of` group must pass in order for the group to pass.",
"$ref": "#/definitions/groups_spec"
},
"none_of": {
"title": "None Of",
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
"description": "All tests in a `none_of` group must fail in order for the group to pass.",
"$ref": "#/definitions/groups_spec"
}
}
@@ -29,17 +29,17 @@
"properties": {
"all_of": {
"title": "All Of",
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
"description": "All tests in an `all_of` group must pass in order for the group to pass.",
"$ref": "#/definitions/groups_spec"
},
"any_of": {
"title": "Any Of",
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
"description": "One or more tests in an `any_of` group must pass in order for the group to pass.",
"$ref": "#/definitions/groups_spec"
},
"none_of": {
"title": "None Of",
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
"description": "All tests in a `none_of` group must fail in order for the group to pass.",
"$ref": "#/definitions/groups_spec"
}
},