Add a new minecraft recipe based on mod items

Started by VicoHaricot on

Topic category: Help with Minecraft modding (Java Edition)

Joined Apr 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Add a new minecraft recipe based on mod items

hello everyone,

I'm looking for a way to add a recipe to craft à smithing table but with an item from a mod.

I created a .json in the progression_reborn.jar>data>minecraft>recipe with this script :

{

    "type": "minecraft:crafting_shaped",

    "category": "misc",

    "key": {

      "#": "#minecraft:planks",

      "@": "progression_reborn:rose_ingot"

    },

    "pattern": [

      "@@",

      "##",

      "##"

    ],

    "result": {

      "count": 1,

      "id": "minecraft:smithing_table"

    }

  }

 

I'm looking for a way to replace iron_ingot by this "progression_reborn:rose_ingot". Can any one help me ? Do i make a mistake in the place of the recipe ? 

Thanks for your help ^^.