This commit is contained in:
DaanV2
2021-11-20 21:02:56 +01:00
parent c438007de2
commit 64f40fde84
9 changed files with 10 additions and 20 deletions

View File

@@ -1,6 +1,7 @@
{ {
"$id": "blockception.minecraft.behavior.loot_tables.enchant_book_for_trading", "$id": "blockception.minecraft.behavior.loot_tables.enchant_book_for_trading",
"additionalProperties": false, "additionalProperties": false,
"type": "object",
"description": "The function enchant_book_for_trading", "description": "The function enchant_book_for_trading",
"title": "Enchant Book For Trading", "title": "Enchant Book For Trading",
"required": ["function", "base_cost", "base_random_cost", "per_level_random_cost", "per_level_cost"], "required": ["function", "base_cost", "base_random_cost", "per_level_random_cost", "per_level_cost"],

View File

@@ -1,6 +1,7 @@
{ {
"$id": "blockception.minecraft.behavior.loot_tables.enchant_random_gear", "$id": "blockception.minecraft.behavior.loot_tables.enchant_random_gear",
"additionalProperties": false, "additionalProperties": false,
"type": "object",
"description": "The function enchant_random_gear", "description": "The function enchant_random_gear",
"title": "Enchant Random Gear", "title": "Enchant Random Gear",
"properties": { "properties": {

View File

@@ -1,6 +1,7 @@
{ {
"$id": "blockception.minecraft.behavior.loot_tables.enchant_randomly", "$id": "blockception.minecraft.behavior.loot_tables.enchant_randomly",
"additionalProperties": false, "additionalProperties": false,
"type": "object",
"description": "The function enchant_randomly", "description": "The function enchant_randomly",
"title": "Enchant Randomly", "title": "Enchant Randomly",
"properties": { "properties": {

View File

@@ -9,20 +9,7 @@
"destination": { "destination": {
"type": "string", "type": "string",
"description": "The destination value defines what type of treasure map they receive.", "description": "The destination value defines what type of treasure map they receive.",
"enum": [ "enum": ["endcity", "fortress", "mineshaft", "monument", "ruins", "stronghold", "temple", "village", "mansion", "shipwreck", "buriedtreasure", "pillageroutpost"],
"endcity",
"fortress",
"mineshaft",
"monument",
"ruins",
"stronghold",
"temple",
"village",
"mansion",
"shipwreck",
"buriedtreasure",
"pillageroutpost"
],
"title": "Destination" "title": "Destination"
} }
} }

View File

@@ -1,6 +1,7 @@
{ {
"$id": "blockception.minecraft.behavior.loot_tables.fill_container", "$id": "blockception.minecraft.behavior.loot_tables.fill_container",
"additionalProperties": false, "additionalProperties": false,
"type": "object",
"description": "The function fill_container", "description": "The function fill_container",
"title": "Fill Container", "title": "Fill Container",
"properties": { "properties": {

View File

@@ -1,9 +1,9 @@
{ {
"$id": "blockception.minecraft.behavior.loot_tables.furnace_smelt", "$id": "blockception.minecraft.behavior.loot_tables.furnace_smelt",
"additionalProperties": false, "additionalProperties": false,
"type": "object",
"description": "If the item to return has a smelted crafting recipe and the loot table is triggered by an entity killed with fire. the result will be the smelted version of the item", "description": "If the item to return has a smelted crafting recipe and the loot table is triggered by an entity killed with fire. the result will be the smelted version of the item",
"title": "Furnace Smelt", "title": "Furnace Smelt",
"type": "object",
"properties": { "properties": {
"function": { "type": "string", "const": "furnace_smelt", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Function" }, "function": { "type": "string", "const": "furnace_smelt", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Function" },
"conditions": { "conditions": {

View File

@@ -1,6 +1,7 @@
{ {
"$id": "blockception.minecraft.behavior.loot_tables.set_count", "$id": "blockception.minecraft.behavior.loot_tables.set_count",
"additionalProperties": false, "additionalProperties": false,
"type": "object",
"description": "The function set_count", "description": "The function set_count",
"title": "Set Count", "title": "Set Count",
"properties": { "properties": {
@@ -13,10 +14,7 @@
}, },
"count": { "count": {
"title": "Count", "title": "Count",
"oneOf": [ "oneOf": [{ "type": "integer" }, { "type": "object", "properties": { "min": { "type": "integer", "title": "Minimum" }, "max": { "type": "integer", "title": "Maximum" } } }],
{ "type": "integer" },
{ "type": "object", "properties": { "min": { "type": "integer", "title": "Minimum" }, "max": { "type": "integer", "title": "Maximum" } } }
],
"description": "UNDOCUMENTED", "description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED" "$comment": "UNDOCUMENTED"
} }

View File

@@ -1,6 +1,7 @@
{ {
"$id": "blockception.minecraft.behavior.loot_tables.specific_enchants", "$id": "blockception.minecraft.behavior.loot_tables.specific_enchants",
"additionalProperties": false, "additionalProperties": false,
"type": "object",
"description": "The function specific_enchants", "description": "The function specific_enchants",
"title": "Specific Enchants", "title": "Specific Enchants",
"definitions": { "definitions": {

View File

@@ -5,6 +5,6 @@
"title": "Trader Material Type", "title": "Trader Material Type",
"type": "object", "type": "object",
"properties": { "properties": {
"function": { "type": "string", "const": "trader_material_type", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "function" } "function": { "type": "string", "const": "trader_material_type", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Function" }
} }
} }