From c05a18f8cdd06fd6de580f37b1769944eb4ca198 Mon Sep 17 00:00:00 2001 From: DaanV2 Date: Thu, 9 Mar 2023 16:52:33 +0100 Subject: [PATCH] Adding recipe_smithing_transform --- source/behavior/recipes/1.12.0/recipes.json | 3 +- .../types/recipe_smithing_transform.json | 29 +++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 source/behavior/recipes/1.12.0/types/recipe_smithing_transform.json diff --git a/source/behavior/recipes/1.12.0/recipes.json b/source/behavior/recipes/1.12.0/recipes.json index 73c0be06..d3766f46 100644 --- a/source/behavior/recipes/1.12.0/recipes.json +++ b/source/behavior/recipes/1.12.0/recipes.json @@ -16,6 +16,7 @@ "minecraft:recipe_brewing_container": { "$ref": "./types/recipe_brewing_container.json" }, "minecraft:recipe_brewing_mix": { "$ref": "./types/recipe_brewing_mix.json" }, "minecraft:recipe_shaped": { "$ref": "./types/recipe_shaped.json" }, - "minecraft:recipe_shapeless": { "$ref": "./types/recipe_shapeless.json" } + "minecraft:recipe_shapeless": { "$ref": "./types/recipe_shapeless.json" }, + "minecraft:recipe_smithing_transform": { "$ref": "./types/recipe_smithing_transform.json" } } } diff --git a/source/behavior/recipes/1.12.0/types/recipe_smithing_transform.json b/source/behavior/recipes/1.12.0/types/recipe_smithing_transform.json new file mode 100644 index 00000000..cbbb4de7 --- /dev/null +++ b/source/behavior/recipes/1.12.0/types/recipe_smithing_transform.json @@ -0,0 +1,29 @@ +{ + "$id": "blockception.minecraft.behavior.1.12.0.recipe.recipe_smithing_transform", + "description": "Represents a smithing table crafting recipe..", + "title": "Smithing transform Recipe 1.12.0", + "additionalProperties": false, + "required": ["description"], + "type": "object", + "properties": { + "description": { "$ref": "./base types/definition.json" }, + "tags": { "$ref": "./base types/tags.json" }, + "base": { + "description": "Item used as base for the smithing recipe.", + "title": "Base", + "oneOf": [{ "$ref": "./base types/item.json" }, { "type": "array", "items": { "$ref": "./base types/item.json" } }] + }, + "addition": { + "description": "Item used as addition for the smithing recipe.", + "title": "Addition", + "oneOf": [{ "$ref": "./base types/item.json" }, { "type": "array", "items": { "$ref": "./base types/item.json" } }] + }, + "group": { "type": "string", "title": "Group", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED" }, + "priority": { "type": "integer", "description": "Item used as output for the furnace recipe.", "title": "Priority" }, + "result": { + "description": "When input items match the pattern then these items are the result.", + "title": "Result", + "oneOf": [{ "$ref": "./base types/item.json" }, { "type": "array", "items": { "$ref": "./base types/item.json" } }] + } + } +}