Adding recipe_smithing_transform

This commit is contained in:
DaanV2
2023-03-09 16:52:33 +01:00
parent 9889caa6e7
commit c05a18f8cd
2 changed files with 31 additions and 1 deletions

View File

@@ -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" }
}
}

View File

@@ -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" } }]
}
}
}