UNDOCUMENTATED description, or needs to be filled in

This commit is contained in:
DaanV2
2021-06-09 09:40:37 +02:00
parent c4174e2457
commit 0bff0baa33
156 changed files with 481 additions and 465 deletions

View File

@@ -5,10 +5,10 @@
"title": "Enchant Book For Trading",
"required": ["function", "base_cost", "base_random_cost", "per_level_random_cost", "per_level_cost"],
"properties": {
"function": { "type": "string", "const": "enchant_book_for_trading", "title": "Function", "description": "TODO description" },
"base_cost": { "type": "integer", "title": "Base Cost", "description": "TODO description" },
"base_random_cost": { "type": "integer", "title": "Base Cost", "description": "TODO description" },
"per_level_random_cost": { "type": "integer", "title": "Base Cost", "description": "TODO description" },
"per_level_cost": { "type": "integer", "title": "Base Cost", "description": "TODO description" }
"function": { "type": "string", "const": "enchant_book_for_trading", "title": "Function", "description": "UNDOCUMENTATED" },
"base_cost": { "type": "integer", "title": "Base Cost", "description": "UNDOCUMENTATED" },
"base_random_cost": { "type": "integer", "title": "Base Cost", "description": "UNDOCUMENTATED" },
"per_level_random_cost": { "type": "integer", "title": "Base Cost", "description": "UNDOCUMENTATED" },
"per_level_cost": { "type": "integer", "title": "Base Cost", "description": "UNDOCUMENTATED" }
}
}

View File

@@ -4,7 +4,7 @@
"description": "The function enchant_random_gear",
"title": "Enchant Random Gear",
"properties": {
"function": { "type": "string", "const": "enchant_random_gear", "title": "Function", "description": "TODO description" },
"function": { "type": "string", "const": "enchant_random_gear", "title": "Function", "description": "UNDOCUMENTATED" },
"chance": {
"type": "number",
"description": "Takes a chance modifier to manipulate the algorithm. Note that a chance modifier of 1.0 doesn't mean a 100% chance that gear will become enchanted.",

View File

@@ -4,7 +4,7 @@
"description": "The function enchant_randomly",
"title": "Enchant Randomly",
"properties": {
"function": { "type": "string", "const": "enchant_randomly", "title": "Function", "description": "TODO description" },
"function": { "type": "string", "const": "enchant_randomly", "title": "Function", "description": "UNDOCUMENTATED" },
"treasure": {
"type": "boolean",
"description": "Supports the optional treasure boolean (true/false) to allow treasure enchantments to be toggled on and off.",

View File

@@ -4,7 +4,7 @@
"description": "The function enchant_with_levels",
"title": "Enchant With Levels",
"properties": {
"function": { "type": "string", "const": "enchant_with_levels", "description": "TODO description", "title": "TODO Title" },
"function": { "type": "string", "const": "enchant_with_levels", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"levels": {
"title": "Levels",
"oneOf": [
@@ -16,8 +16,8 @@
"properties": { "min": { "type": "integer", "title": "Minimum" }, "max": { "type": "integer", "title": "Maximum" } }
}
],
"description": "TODO description"
"description": "UNDOCUMENTATED"
},
"treasure": { "type": "boolean", "title": "Treasure", "description": "TODO description" }
"treasure": { "type": "boolean", "title": "Treasure", "description": "UNDOCUMENTATED" }
}
}

View File

@@ -4,7 +4,7 @@
"description": "The function exploration_map",
"title": "Exploration Map",
"properties": {
"function": { "type": "string", "const": "exploration_map", "description": "TODO description", "title": "TODO Title" },
"function": { "type": "string", "const": "exploration_map", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"destination": {
"type": "string",
"description": "The destination value defines what type of treasure map they receive.",

View File

@@ -4,7 +4,7 @@
"description": "The function fill_container",
"title": "Fill Container",
"properties": {
"function": { "type": "string", "const": "fill_container", "title": "Function", "description": "TODO description" },
"loot_table": { "type": "string", "title": "Loot Table", "pattern": "^loot_tables/.*\\.json$", "description": "TODO description" }
"function": { "type": "string", "const": "fill_container", "title": "Function", "description": "UNDOCUMENTATED" },
"loot_table": { "type": "string", "title": "Loot Table", "pattern": "^loot_tables/.*\\.json$", "description": "UNDOCUMENTATED" }
}
}

View File

@@ -4,7 +4,7 @@
"description": "The function furnace_smelt",
"title": "Furnace Smelt",
"properties": {
"function": { "type": "string", "const": "furnace_smelt", "description": "TODO description", "title": "TODO Title" },
"function": { "type": "string", "const": "furnace_smelt", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"conditions": { "title": "Conditions", "description": "TODO", "type": "array", "items": { "$ref": "../conditions.json" } }
}
}

View File

@@ -4,11 +4,11 @@
"description": "The function looting_enchant",
"title": "Looting Enchant",
"properties": {
"function": { "type": "string", "const": "looting_enchant", "description": "TODO description", "title": "TODO Title" },
"function": { "type": "string", "const": "looting_enchant", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"count": {
"type": "object",
"properties": { "min": { "type": "integer" }, "max": { "type": "integer" } },
"description": "TODO description",
"description": "UNDOCUMENTATED",
"title": "TODO Title",
"additionalProperties": false
}

View File

@@ -4,11 +4,11 @@
"description": "The function random_aux_value",
"title": "Random Aux Value",
"properties": {
"function": { "type": "string", "const": "random_aux_value", "description": "TODO description", "title": "TODO Title" },
"function": { "type": "string", "const": "random_aux_value", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"values": {
"type": "object",
"properties": { "min": { "type": "integer" }, "max": { "type": "integer" } },
"description": "TODO description",
"description": "UNDOCUMENTATED",
"title": "TODO Title",
"additionalProperties": false
}

View File

@@ -4,12 +4,12 @@
"description": "The function random_block_state",
"title": "Random Block State",
"properties": {
"function": { "type": "string", "const": "random_block_state", "description": "TODO description", "title": "TODO Title" },
"block_state": { "type": "string", "description": "TODO description", "title": "TODO Title" },
"function": { "type": "string", "const": "random_block_state", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"block_state": { "type": "string", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"values": {
"type": "object",
"properties": { "min": { "title": "Min", "type": "integer" }, "max": { "title": "Max", "type": "integer" } },
"description": "TODO description",
"description": "UNDOCUMENTATED",
"title": "TODO Title",
"additionalProperties": false
}

View File

@@ -3,5 +3,5 @@
"additionalProperties": false,
"description": "The function random_dye",
"title": "Trader Material Type",
"properties": { "function": { "type": "string", "const": "random_dye", "description": "TODO description", "title": "TODO Title" } }
"properties": { "function": { "type": "string", "const": "random_dye", "description": "UNDOCUMENTATED", "title": "TODO Title" } }
}

View File

@@ -4,7 +4,7 @@
"description": "The function set_actor_id",
"title": "Set Actor Id",
"properties": {
"function": { "type": "string", "const": "set_actor_id", "description": "TODO description", "title": "TODO Title" },
"id": { "type": "string", "description": "TODO description", "title": "TODO Title" }
"function": { "type": "string", "const": "set_actor_id", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"id": { "type": "string", "description": "UNDOCUMENTATED", "title": "TODO Title" }
}
}

View File

@@ -4,7 +4,7 @@
"description": "The function set_banner_details",
"title": "Set Banner Details",
"properties": {
"function": { "type": "string", "const": "set_banner_details", "description": "TODO description", "title": "TODO Title" },
"type": { "type": "integer", "description": "TODO description", "title": "TODO Title" }
"function": { "type": "string", "const": "set_banner_details", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"type": { "type": "integer", "description": "UNDOCUMENTATED", "title": "TODO Title" }
}
}

View File

@@ -5,13 +5,13 @@
"title": "Set Book Contents",
"required": ["function", "author", "title", "pages"],
"properties": {
"function": { "type": "string", "const": "set_book_contents", "description": "TODO description", "title": "TODO Title" },
"author": { "type": "string", "description": "TODO description", "title": "TODO Title" },
"title": { "type": "string", "description": "TODO description", "title": "TODO Title" },
"function": { "type": "string", "const": "set_book_contents", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"author": { "type": "string", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"title": { "type": "string", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"pages": {
"type": "array",
"items": { "type": "string", "examples": ["Some text", "{\"rawtext\":[ {\"translate\":\"some.text\"}]}"] },
"description": "TODO description",
"description": "UNDOCUMENTATED",
"title": "TODO Title"
}
}

View File

@@ -4,14 +4,14 @@
"description": "The function set_count",
"title": "Set Count",
"properties": {
"function": { "type": "string", "const": "set_count", "title": "Function", "description": "TODO description" },
"function": { "type": "string", "const": "set_count", "title": "Function", "description": "UNDOCUMENTATED" },
"count": {
"title": "Count",
"oneOf": [
{ "type": "integer" },
{ "type": "object", "properties": { "min": { "type": "integer", "title": "Minimum" }, "max": { "type": "integer", "title": "Maximum" } } }
],
"description": "TODO description"
"description": "UNDOCUMENTATED"
}
}
}

View File

@@ -4,14 +4,14 @@
"description": "The function set_damage",
"title": "Set Damage",
"properties": {
"function": { "type": "string", "const": "set_damage", "description": "TODO description", "title": "TODO Title" },
"function": { "type": "string", "const": "set_damage", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"damage": {
"oneOf": [
{ "type": "integer" },
{ "type": "object", "properties": { "min": { "type": "integer" }, "max": { "type": "integer" } } },
{ "type": "object", "properties": { "min": { "type": "number" }, "max": { "type": "number" } } }
],
"description": "TODO description",
"description": "UNDOCUMENTATED",
"title": "TODO Title"
}
}

View File

@@ -4,14 +4,14 @@
"description": "The function set_data",
"title": "Set Data",
"properties": {
"function": { "type": "string", "const": "set_data", "description": "TODO description", "title": "TODO Title" },
"function": { "type": "string", "const": "set_data", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"data": {
"title": "Data",
"oneOf": [
{ "type": "integer" },
{ "type": "object", "properties": { "min": { "type": "integer", "title": "Minimum" }, "max": { "type": "integer", "title": "Maximum" } } }
],
"description": "TODO description"
"description": "UNDOCUMENTATED"
}
}
}

View File

@@ -3,5 +3,5 @@
"additionalProperties": false,
"description": "The function set_data_from_color_index",
"title": "Set Data From Color Index",
"properties": { "function": { "type": "string", "const": "set_data_from_color_index", "description": "TODO description", "title": "TODO Title" } }
"properties": { "function": { "type": "string", "const": "set_data_from_color_index", "description": "UNDOCUMENTATED", "title": "TODO Title" } }
}

View File

@@ -4,7 +4,7 @@
"description": "The function set_lore",
"title": "Set Lore",
"properties": {
"function": { "type": "string", "const": "set_lore", "description": "TODO description", "title": "TODO Title" },
"lore": { "type": "array", "items": { "type": "string" }, "description": "TODO description", "title": "TODO Title" }
"function": { "type": "string", "const": "set_lore", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"lore": { "type": "array", "items": { "type": "string" }, "description": "UNDOCUMENTATED", "title": "TODO Title" }
}
}

View File

@@ -4,7 +4,7 @@
"description": "The function set_name",
"title": "Set Name",
"properties": {
"function": { "type": "string", "const": "set_name", "description": "TODO description", "title": "TODO Title" },
"name": { "type": "string", "description": "TODO description", "title": "TODO Title" }
"function": { "type": "string", "const": "set_name", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"name": { "type": "string", "description": "UNDOCUMENTATED", "title": "TODO Title" }
}
}

View File

@@ -3,5 +3,5 @@
"additionalProperties": false,
"description": "The function trader_material_type",
"title": "Trader Material Type",
"properties": { "function": { "type": "string", "const": "trader_material_type", "description": "TODO description", "title": "TODO Title" } }
"properties": { "function": { "type": "string", "const": "trader_material_type", "description": "UNDOCUMENTATED", "title": "TODO Title" } }
}

View File

@@ -23,7 +23,7 @@
"definitions": {
"pools_spec": {
"title": "Pools",
"description": "TODO description",
"description": "UNDOCUMENTATED",
"type": "array",
"additionalProperties": false,
"items": {
@@ -72,13 +72,13 @@
},
"tiers": {
"title": "Tiers",
"description": "TODO description",
"description": "UNDOCUMENTATED",
"type": "object",
"additionalProperties": false,
"properties": {
"bonus_chance": { "title": "Bonus Chance", "description": "TODO description", "type": "number" },
"bonus_rolls": { "title": "Bonus Rolls", "description": "TODO description", "type": "integer" },
"initial_range": { "title": "Initial Range", "description": "TODO description", "type": "integer" }
"bonus_chance": { "title": "Bonus Chance", "description": "UNDOCUMENTATED", "type": "number" },
"bonus_rolls": { "title": "Bonus Rolls", "description": "UNDOCUMENTATED", "type": "integer" },
"initial_range": { "title": "Initial Range", "description": "UNDOCUMENTATED", "type": "integer" }
}
}
}
@@ -86,7 +86,7 @@
}
},
"properties": {
"pools": { "$ref": "#/definitions/pools_spec", "description": "TODO description", "title": "TODO Title" },
"type": { "title": "Type", "type": "string", "description": "TODO description", "enum": ["minecraft:chest"] }
"pools": { "$ref": "#/definitions/pools_spec", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"type": { "title": "Type", "type": "string", "description": "UNDOCUMENTATED", "enum": ["minecraft:chest"] }
}
}