Adding dots to description

This commit is contained in:
DaanV2
2022-07-22 19:41:04 +02:00
parent 61327eac6e
commit 8b3778de6d
457 changed files with 2337 additions and 2406 deletions

View File

@@ -2,7 +2,7 @@
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.loot_tables",
"additionalProperties": false,
"description": "A minecraft loot table",
"description": "A minecraft loot table.",
"title": "Loot Table",
"type": "object",
"examples": [
@@ -25,7 +25,7 @@
"definitions": {
"pools_spec": {
"title": "Pools",
"description": "A collection of items where the system will choice one or more from",
"description": "A collection of items where the system will choice one or more from.",
"$comment": "UNDOCUMENTED",
"type": "array",
"additionalProperties": false,
@@ -36,7 +36,7 @@
"properties": {
"rolls": {
"title": "Rolls",
"description": "Determines how many items, will be selected",
"description": "Determines how many items, will be selected.",
"$comment": "UNDOCUMENTED",
"oneOf": [
{ "type": "integer", "minimum": 0 },
@@ -44,8 +44,8 @@
"type": "object",
"required": ["min", "max"],
"properties": {
"min": { "title": "Minimum", "type": "number", "minimum": 0, "description": "The minimum amount" },
"max": { "title": "Maximum", "type": "number", "minimum": 1, "description": "The maximum amount" }
"min": { "title": "Minimum", "type": "number", "minimum": 0, "description": "The minimum amount." },
"max": { "title": "Maximum", "type": "number", "minimum": 1, "description": "The maximum amount." }
}
}
]
@@ -53,13 +53,13 @@
"type": {
"title": "Type",
"type": "string",
"description": "Whenever this pool item is an item or another table",
"description": "Whenever this pool item is an item or another table.",
"$comment": "UNDOCUMENTED",
"enum": ["loot_table", "item", "empty"]
},
"conditions": {
"title": "Conditions",
"description": "Possible conditions that need to have been met before selecting this item",
"description": "Possible conditions that need to have been met before selecting this item.",
"$comment": "UNDOCUMENTED",
"type": "array",
"items": { "$ref": "./conditions.json" }
@@ -67,44 +67,44 @@
"entries": {
"title": "Entries",
"type": "array",
"description": "The items specifiation of this pool",
"description": "The items specifiation of this pool.",
"$comment": "UNDOCUMENTED",
"items": {
"additionalProperties": false,
"type": "object",
"required": ["type"],
"title": "Entry",
"description": "UNDOCUMENTED",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"properties": {
"type": {
"title": "Type",
"type": "string",
"enum": ["item", "empty", "loot_table"],
"description": "UNDOCUMENTED",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED"
},
"count": {
"type": "integer",
"title": "Count",
"description": "The amount of the item"
"description": "The amount of the item."
},
"name": { "title": "Name", "type": "string", "description": "An item or loottable", "pattern": "^([\\w]+:|loot_tables/)" },
"name": { "title": "Name", "type": "string", "description": "An item or loottable.", "pattern": "^([\\w]+:|loot_tables/)" },
"weight": {
"title": "Weight",
"type": "integer",
"minimum": 1,
"description": "UNDOCUMENTED",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED"
},
"functions": {
"title": "Functions",
"type": "array",
"description": "UNDOCUMENTED",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"items": {
"type": "object",
"description": "UNDOCUMENTED",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"required": ["function"],
"title": "Function",
@@ -112,25 +112,25 @@
}
},
"pools": { "$ref": "#/definitions/pools_spec" },
"quality": { "title": "Quality", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "integer" }
"quality": { "title": "Quality", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED", "type": "integer" }
}
}
},
"tiers": {
"title": "Tiers",
"description": "UNDOCUMENTED",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"type": "object",
"additionalProperties": false,
"properties": {
"bonus_chance": { "title": "Bonus Chance", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "number" },
"bonus_rolls": { "title": "Bonus Rolls", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "integer" },
"initial_range": { "title": "Initial Range", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "integer" }
"bonus_chance": { "title": "Bonus Chance", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED", "type": "number" },
"bonus_rolls": { "title": "Bonus Rolls", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED", "type": "integer" },
"initial_range": { "title": "Initial Range", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED", "type": "integer" }
}
},
"bonus_rolls": {
"title": "Bonus Rolls",
"description": "UNDOCUMENTED",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"type": "integer",
"minimum": 0,
@@ -141,7 +141,7 @@
}
},
"properties": {
"pools": { "$ref": "#/definitions/pools_spec", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Pools" },
"type": { "title": "Type", "type": "string", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "enum": ["minecraft:chest"] }
"pools": { "$ref": "#/definitions/pools_spec", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED", "title": "Pools" },
"type": { "title": "Type", "type": "string", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED", "enum": ["minecraft:chest"] }
}
}