More alloys
This commit is contained in:
parent
80f2440323
commit
cc91888c4a
11 changed files with 196 additions and 41 deletions
|
@ -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")) {
|
||||||
|
|
|
@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue