Minecraft Recipe Improver mod 2026 download
logo
minecraft mod Recipe Improver

Recipe Improver

Game Version: 1.18
Total Downloads: 655
Updated: Dec 8, 2021
Created: Apr 26, 2020
Download Recipe ImproverDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
recipeimprover-1.18-1.2.0.jar release 60.21 KB Dec 8, 2021 1.18 17 download Recipe Improver recipeimprover-1.18-1.2.0.jar releaseDownload
recipe-improver-1.17-1.2.0.jar release 59.89 KB Jul 4, 2021 1.17 51 download Recipe Improver recipe-improver-1.17-1.2.0.jar releaseDownload
recipeimprover-1.16.x-1.1.0.jar release 59.42 KB Jul 29, 2020 1.16.1 431 download Recipe Improver recipeimprover-1.16.x-1.1.0.jar releaseDownload
recipeimprover-1.15.x-1.0.0.jar release 58.29 KB Apr 26, 2020 1.15.2 104 download Recipe Improver recipeimprover-1.15.x-1.0.0.jar releaseDownload
recipeimprover-1.16-snapshots-1.0.1.jar alpha 58.28 KB Apr 29, 2020 1.16-Snapshot 52 download Recipe Improver recipeimprover-1.16-snapshots-1.0.1.jar alphaDownload

Description

Share this:
Recipe Improver Mod
 
This mods allows you to remove recipes and have smelting recipes output an item count.
You use this mod through datapacks.
 
Usage:
  • To remove vanilla recipes you create a recipe json file in the minecraft namespace. The file has to have the same name as the vanilla recipe file and be a valid recipe file with a result value of "minecraft:air".
  • To add smelting, blasting or cooking recipes that output multiple items you create a "count" field with the desired value in the recipe file.
 
Examples:
Removing iron ingot recipe from furnace:
File: datapackname/data/minecraft/recipes/iron_ingot.json
{
    "type": "minecraft:smelting",
    "ingredient": { "item": "minecraft:iron_ore" },
    "result": "minecraft:air"
}

 

Adding double iron ingot output from blast furnace in 1.17:
File: datapackname/data/minecraft/recipes/iron_ingot_from_blasting_iron_ore.json
{
    "type": "minecraft:blasting",
    "ingredient": { "item": "minecraft:iron_ore" },
    "result": "minecraft:iron_ingot",
    "count": 2
}

 

Adding double iron ingot output from blast furnace in 1.16.x:
File: datapackname/data/minecraft/recipes/iron_ingot_from_blasting.json
{
    "type": "minecraft:blasting",
    "ingredient": { "item": "minecraft:iron_ore" },
    "result": "minecraft:iron_ingot",
    "count": 2
}

 

Comments

Add a comment