Start of melting recipes
This commit is contained in:
parent
eb6a8b9ceb
commit
56503ad117
3 changed files with 19 additions and 2 deletions
|
@ -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());
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"type": "minecraft:smelting",
|
||||
"ingredient": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
},
|
||||
"result": "techreborn:refined_iron_ingot",
|
||||
"experience": 0.5,
|
||||
"cookingtime": 200
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"type": "minecraft:smelting",
|
||||
"ingredient": {
|
||||
"item": "techreborn:sap"
|
||||
},
|
||||
"result": "techreborn:rubber",
|
||||
"experience": 0.5,
|
||||
"cookingtime": 200
|
||||
}
|
Loading…
Reference in a new issue