Start of melting recipes

This commit is contained in:
drcrazy 2019-07-23 17:21:17 +03:00
parent eb6a8b9ceb
commit 56503ad117
3 changed files with 19 additions and 2 deletions

View file

@ -34,8 +34,7 @@ import techreborn.init.TRContent;
public class SmeltingRecipes extends RecipeMethods {
public static void init() {
register(getStack(Items.IRON_INGOT), TRContent.Ingots.REFINED_IRON.getStack());
register(TRContent.Parts.SAP.getStack(), TRContent.Parts.RUBBER.getStack());
register(TRContent.Ingots.MIXED_METAL.getStack(), TRContent.Ingots.ADVANCED_ALLOY.getStack());
// register(BlockOre.getOreByName("silver"), TRIngredients.Ingots.SILVER.getStack());
// register(BlockOre2.getOreByName("tin"), TRIngredients.Ingots.TIN.getStack());

View file

@ -0,0 +1,9 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "minecraft:iron_ingot"
},
"result": "techreborn:refined_iron_ingot",
"experience": 0.5,
"cookingtime": 200
}

View file

@ -0,0 +1,9 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "techreborn:sap"
},
"result": "techreborn:rubber",
"experience": 0.5,
"cookingtime": 200
}