Skip to content

Commit

Permalink
Add missing AdvIronCasing Recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
DrParadox7 committed Jan 26, 2023
1 parent aaca18c commit 6a90322
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,13 @@ public void registerOre(OrePrefixes aPrefix, List<OreDictEntry> entries) {
RecipeMaps.EXTRUDING.factory().EUt(48).setShaped(true).duration(tAmount * 32).input(RecipeEntry.fromStacks(1, e.ores, Match.STRICT)).nonConsumable(GT_Items.Shape_Extruder_Casing.get(1)).output(GT_ModHandler.getIC2Item("casinggold", (tAmount * 2))).buildAndRegister();
RecipeMaps.ALLOY_SMELTING.factory().EUt(12).duration(tAmount * 128).input(RecipeEntry.fromStacks(2, e.ores, Match.STRICT)).nonConsumable(GT_Items.Shape_Mold_Casing.get(1)).output(GT_ModHandler.getIC2Item("casinggold", (tAmount * 3))).buildAndRegister();
}
break;
case Steel:
if(tAmount * 2 <= 64) {
RecipeMaps.EXTRUDING.factory().EUt(64).setShaped(true).duration(tAmount * 32).input(RecipeEntry.fromStacks(1, e.ores, Match.STRICT)).nonConsumable(GT_Items.Shape_Extruder_Casing.get(1)).output(GT_ModHandler.getIC2Item("casingadviron", (tAmount * 2))).buildAndRegister();
RecipeMaps.ALLOY_SMELTING.factory().EUt(12).duration(tAmount * 128).input(RecipeEntry.fromStacks(2, e.ores, Match.STRICT)).nonConsumable(GT_Items.Shape_Mold_Casing.get(1)).output(GT_ModHandler.getIC2Item("casingadviron", (tAmount * 3))).buildAndRegister();
}
break;
default: break;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,8 +288,9 @@ public void run() {
GT_ModHandler.addCraftingRecipe(GT_ModHandler.getIC2Item("casingcopper" , 1), new Object[] {"H P", 'P', OrePrefixes.plate.get(Materials.Copper), 'H', GT_ToolDictNames.craftingToolHardHammer});
GT_ModHandler.addCraftingRecipe(GT_ModHandler.getIC2Item("casingtin" , 1), new Object[] {"H P", 'P', OrePrefixes.plate.get(Materials.Tin), 'H', GT_ToolDictNames.craftingToolHardHammer});
GT_ModHandler.addCraftingRecipe(GT_ModHandler.getIC2Item("casinglead" , 1), new Object[] {"H P", 'P', OrePrefixes.plate.get(Materials.Lead), 'H', GT_ToolDictNames.craftingToolHardHammer});

GT_ModHandler.addCraftingRecipe(GT_Items.Component_Turbine_Bronze .getUndamaged(1), new Object[] {"TTT", "TBT", "TTT", 'T', GT_OreDictNames.craftingTurbineBladeBronze, 'B', OrePrefixes.gearGt.get(Materials.Bronze)});
GT_ModHandler.addCraftingRecipe(GT_ModHandler.getIC2Item("casingadviron" , 1), new Object[] {"H P", 'P', OrePrefixes.plate.get(Materials.Steel), 'H', GT_ToolDictNames.craftingToolHardHammer});

GT_ModHandler.addCraftingRecipe(GT_Items.Component_Turbine_Bronze .getUndamaged(1), new Object[] {"TTT", "TBT", "TTT", 'T', GT_OreDictNames.craftingTurbineBladeBronze, 'B', OrePrefixes.gearGt.get(Materials.Bronze)});
GT_ModHandler.addCraftingRecipe(GT_Items.Component_Turbine_Steel .getUndamaged(1), new Object[] {"TTT", "TBT", "TTT", 'T', GT_OreDictNames.craftingTurbineBladeSteel, 'B', OrePrefixes.gearGt.get(Materials.Steel)});
GT_ModHandler.addCraftingRecipe(GT_Items.Component_Turbine_Magnalium .getUndamaged(1), new Object[] {"TTT", "TBT", "TTT", 'T', GT_OreDictNames.craftingTurbineBladeMagnalium, 'B', OrePrefixes.gearGt.get(Materials.Magnalium)});
GT_ModHandler.addCraftingRecipe(GT_Items.Component_Turbine_TungstenSteel.getUndamaged(1), new Object[] {"TTT", "TBT", "TTT", 'T', GT_OreDictNames.craftingTurbineBladeTungstenSteel, 'B', OrePrefixes.gearGt.get(Materials.TungstenSteel)});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ public void run() {
RecipeMaps.CUTTING.factory().EUt(16).duration(100).input(OrePrefixes.plate, Materials.Lead, 1).output(GT_ModHandler.getIC2Item("casinglead", 2L)).buildAndRegister();
RecipeMaps.CUTTING.factory().EUt(16).duration(100).input(OrePrefixes.plate, Materials.Cupronickel, 1).output(GT_Items.Credit_Greg_Cupronickel.get(4L)).buildAndRegister();
RecipeMaps.CUTTING.factory().EUt(16).duration(100).input(OrePrefixes.plate, Materials.Brass, 1).output(GT_Items.Coin_Doge.get(4L)).buildAndRegister();

RecipeMaps.CUTTING.factory().EUt(16).duration(100).input(OrePrefixes.plate, Materials.Steel, 1).output(GT_ModHandler.getIC2Item("casingadviron", 2L)).buildAndRegister();

RecipeMaps.WIREMILL.factory().EUt(2).duration(100).input(OrePrefixes.ingot, Materials.Copper).output(GT_ModHandler.getIC2Item("copperCableItem", 3L)).buildAndRegister();
RecipeMaps.WIREMILL.factory().EUt(1).duration(150).input(OrePrefixes.ingot, Materials.Tin).output(GT_ModHandler.getIC2Item("tinCableItem", 4L)).buildAndRegister();
RecipeMaps.WIREMILL.factory().EUt(4).duration(100).input(OrePrefixes.ingot, Materials.SolderingAlloy).output(GT_Items.Tool_SolderingMaterial_Tin.get(1L)).buildAndRegister();
Expand Down

0 comments on commit 6a90322

Please sign in to comment.