FURNACE

Sure! Here's the translation of the provided information:

Parameter Explanation:

  • type: Recipe type.

  • category: Optional. Can be blocks, food, or misc.

  • ingredient: The material used in the recipe.

  • result: The output item.

  • experience: Experience gained from the recipe output.

  • cookingtime: Cooking time in ticks.

Type: One of smelting, blasting, and smoking. Corresponding to smelting, blasting, and smoking recipes in a furnace, blast furnace, and smoker respectively.

Example (Blasting): Assuming you have two items named "item1" and "item2", and you want to create "item2" through a blasting recipe, you would need to modify the "data\coreextensions\recipes\item2_blasting.json" file as follows:

{
  "type": "minecraft:blasting",
  "group": "misc",
  "ingredient": {
    "item": "coreextensions:item1"
  },
  "result": "coreextensions:item2",
  "experience": 0.35,
  "cookingtime": 200
}

Feel free to adjust the ingredient items, output item, experience, and cooking time as needed for your specific recipe.

Last updated