#How do I Create a Custom crafting recipe
8 messages · Page 1 of 1 (latest)
Please make sure to read #1029468016594911232 as it may answer your question!
Once your question has been resolved, please mark the post as closed by using the </close:1163944441741049897> command.
Make sure you have a "recipes" folder in your BP
Here's an example for a shaped recipe.
{
"format_version": "1.12",
"minecraft:recipe_shaped": {
"description": {
"identifier": "minecraft:example_item"
},
"tags": [
"crafting_table" // options here are: "crafting_table", "furnace", "blast_furnace", "smoker ", "stonecutter", "Campfire", "soul_campfire"
],
"key": {
"A": {
"item": "minecraft_example_item_1"
},
"B": {
"item": "minecraft_example_item_2"
},
"C": {
"item": "minecraft_example_item_3"
}
},
"pattern": [
"BAB",
"ACA",
"BAB"
],
"result": {
"item": "minecraft:example_item_4",
"count": 1
}
}
}
Here's an example for a furnace recipe
{
"format_version": "1.17.41",
"minecraft:recipe_furnace": {
"description": {
"identifier": "minecraft:leather"
},
"tags": ["furnace", "smoker", "campfire", "soul_campfire"],
"input": "minecraft:rotten_flesh",
"output": {
"item": "minecraft:leather",
"count": 1
}
}
}
And here's an example for a shapeless recipe:
{
"format_version": "1.12",
"minecraft:recipe_shapeless": {
"description": {
"identifier": "minecraft:name_tag"
},
"ingredients": [
{
"item": "minecraft:paper"
},
{
"item": "minecraft:string"
}
],
"tags": [
"crafting_table"
],
"result": {
"item": "minecraft:name_tag",
"count": 4
}
}
}
For a stonecutter, you'd probably do the same as the furnace recipe, just give it the stonecutter tag
is there a video tutorial you could pass my way lol