More alloys

This commit is contained in:
drcrazy 2019-07-25 15:59:43 +03:00
parent 80f2440323
commit cc91888c4a
11 changed files with 196 additions and 41 deletions

View file

@ -34,47 +34,6 @@ public class AlloySmelterRecipes extends RecipeMethods {
/* /*
// OreRecipeInput ingotCopper3 = new OreRecipeInput("ingotCopper", 3);
// OreRecipeInput dustCopper3 = new OreRecipeInput("dustCopper", 3);
// // Bronze
//// TODO: Fix Recipe
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(ingotCopper3, "dustTin",
// ItemIngots.getIngotByName("bronze", 4), 200, 16));
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(dustCopper3, "ingotTin",
// ItemIngots.getIngotByName("bronze", 4), 200, 16));
//
// // Electrum
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(new ItemStack(Items.GOLD_INGOT, 1), "ingotSilver",
// ItemIngots.getIngotByName("electrum", 2), 200, 16));
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(new ItemStack(Items.GOLD_INGOT, 1), "dustSilver",
// ItemIngots.getIngotByName("electrum", 2), 200, 16));
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe("dustGold", "ingotSilver",
// ItemIngots.getIngotByName("electrum", 2), 200, 16));
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe("dustGold", "dustSilver",
// ItemIngots.getIngotByName("electrum", 2), 200, 16));
//
// // Invar
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(new ItemStack(Items.IRON_INGOT, 2), "ingotNickel",
// ItemIngots.getIngotByName("invar", 3), 200, 16));
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(new ItemStack(Items.IRON_INGOT, 2), "dustNickel",
// ItemIngots.getIngotByName("invar", 3), 200, 16));
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(new OreRecipeInput("dustIron", 2), "ingotNickel",
// ItemIngots.getIngotByName("invar", 3), 200, 16));
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(new OreRecipeInput("dustIron", 2), "dustNickel",
// ItemIngots.getIngotByName("invar", 3), 200, 16));
// //
// // Brass // // Brass
// if (OreUtil.doesOreExistAndValid("ingotBrass")) { // if (OreUtil.doesOreExistAndValid("ingotBrass")) {

View file

@ -0,0 +1,20 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "techreborn:tin_dust"
},
{
"item": "techreborn:copper_ingot",
"count": 3
}
],
"results" : [
{
"item": "techreborn:bronze_ingot",
"count": 4
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "techreborn:tin_ingot"
},
{
"item": "techreborn:copper_dust",
"count": 3
}
],
"results" : [
{
"item": "techreborn:bronze_ingot",
"count": 4
}
]
}

View file

@ -0,0 +1,19 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "minecraft:gold_ingot"
},
{
"item": "techreborn:silver_ingot"
}
],
"results" : [
{
"item": "techreborn:electrum_ingot",
"count": 2
}
]
}

View file

@ -0,0 +1,19 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "techreborn:gold_dust"
},
{
"item": "techreborn:silver_dust"
}
],
"results" : [
{
"item": "techreborn:electrum_ingot",
"count": 2
}
]
}

View file

@ -0,0 +1,19 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "minecraft:gold_ingot"
},
{
"item": "techreborn:silver_dust"
}
],
"results" : [
{
"item": "techreborn:electrum_ingot",
"count": 2
}
]
}

View file

@ -0,0 +1,19 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "techreborn:gold_dust"
},
{
"item": "techreborn:silver_ingot"
}
],
"results" : [
{
"item": "techreborn:electrum_ingot",
"count": 2
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "minecraft:iron_ingot",
"count": 2
},
{
"item": "techreborn:nickel_ingot"
}
],
"results" : [
{
"item": "techreborn:invar_ingot",
"count": 3
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "techreborn:iron_dust",
"count": 2
},
{
"item": "techreborn:nickel_dust"
}
],
"results" : [
{
"item": "techreborn:invar_ingot",
"count": 3
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "minecraft:iron_ingot",
"count": 2
},
{
"item": "techreborn:nickel_dust"
}
],
"results" : [
{
"item": "techreborn:invar_ingot",
"count": 3
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "techreborn:iron_dust",
"count": 2
},
{
"item": "techreborn:nickel_ingot"
}
],
"results" : [
{
"item": "techreborn:invar_ingot",
"count": 3
}
]
}