🛠️Create Custom Workbench Recipes

Since the workbench block relies on a custom recipe serializer, you can easily extend it with your own recipes through a datapack. To do so, simply create a datapack and add your custom recipes in .json format. Below, you’ll find example recipes for the different mod versions:


1.20.1

{
    "type": "fetzisdisplays:workbench",
    "ingredient": {
        "item": "minecraft:netherite_ingot",
        "amount": 1
    },
    "result": "minecraft:netherite_scrap",
    "count": 4
}

For the 1.20.1 I also created a test datapack for you that you can test:


1.21

{
    "type": "fetzisdisplays:workbench",
    "ingredient": {
        "item": "minecraft:netherite_ingot",
    },
    "amount": 1,
    "result": {
        "id": "minecraft:netherite_scrap",
        "count": 4
    }
}

Last updated