Start of alloy smelter recipes
This commit is contained in:
parent
ba7372c940
commit
0742abb840
3 changed files with 42 additions and 6 deletions
|
@ -39,18 +39,14 @@ public class AlloySmelterRecipes extends RecipeMethods {
|
|||
|
||||
// // Bronze
|
||||
//// TODO: Fix Recipe
|
||||
// RecipeHandler.addRecipe(
|
||||
// new AlloySmelterRecipe(ingotCopper3, "ingotTin",
|
||||
// ItemIngots.getIngotByName("bronze", 4), 200, 16));
|
||||
|
||||
// RecipeHandler.addRecipe(
|
||||
// new AlloySmelterRecipe(ingotCopper3, "dustTin",
|
||||
// ItemIngots.getIngotByName("bronze", 4), 200, 16));
|
||||
// RecipeHandler.addRecipe(
|
||||
// new AlloySmelterRecipe(dustCopper3, "ingotTin",
|
||||
// ItemIngots.getIngotByName("bronze", 4), 200, 16));
|
||||
// RecipeHandler.addRecipe(
|
||||
// new AlloySmelterRecipe(dustCopper3, "dustTin",
|
||||
// ItemIngots.getIngotByName("bronze", 4), 200, 16));
|
||||
|
||||
//
|
||||
// // Electrum
|
||||
// RecipeHandler.addRecipe(
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"type": "techreborn:alloy_smelter",
|
||||
"power": 16,
|
||||
"time": 200,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "techreborn:tin_ingot"
|
||||
},
|
||||
{
|
||||
"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_dust"
|
||||
},
|
||||
{
|
||||
"item": "techreborn:copper_dust",
|
||||
"count": 3
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:bronze_ingot",
|
||||
"count": 4
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Reference in a new issue