Skip to content

Commit

Permalink
Add back lava, update structure tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
StaffiX committed Nov 16, 2024
1 parent 2c252f8 commit 6ddb298
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,12 +212,15 @@ protected MultiblockTooltipBuilder createTooltip() {
.addInfo("Actual output is proportional to the amount of hot fluid inserted.")
.addInfo("Explodes if it runs out of water.")
.addController("Front bottom")
.addOtherStructurePart("Input Hatch", "distilled water", 1)
.addOtherStructurePart("Output Hatch", "SC Steam/SH Steam/Steam", 2)
.addCasingInfoRange("Robust Tungstensteel Machine Casings", 25, 120, false)
.addCasingInfoExactly("EV+ Glass", 72, false)
.addCasingInfoExactly("Pressure Resistant Wall", 48, false)
.addCasingInfoExactly("Tungstensteel Pipe Casing", 60, false)
.addOtherStructurePart("Input Hatch", "Distilled water", 1)
.addOtherStructurePart("Output Hatch", "SC Steam/SH Steam", 2)
.addOtherStructurePart("Input Hatch", "Hot fluid or plasma", 3)
.addOtherStructurePart("Output Hatch", "Cold fluid", 4)
.addMaintenanceHatch("Any Casing", 1, 2, 5)
.addCasingInfoMin("Robust Tungstensteel Machine Casings", 25, false)
.toolTipFinisher();
return tt;
}
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/goodgenerator/loader/RecipeLoader2.java
Original file line number Diff line number Diff line change
Expand Up @@ -1063,6 +1063,14 @@ public static void RecipeLoad() {
.eut(TierEU.RECIPE_IV)
.addTo(assemblerRecipes);

MyRecipeAdder.instance.addExtremeHeatExchangerRecipe(
FluidRegistry.getFluidStack("lava", 160000),
FluidRegistry.getFluidStack("ic2pahoehoelava", 160000),
FluidRegistry.getFluidStack("ic2distilledwater", 80000),
FluidRegistry.getFluidStack("ic2superheatedsteam", 12800000),
FluidRegistry.getFluidStack("supercriticalsteam", 12800000),
80000);

MyRecipeAdder.instance.addExtremeHeatExchangerRecipe(
FluidRegistry.getFluidStack("ic2hotcoolant", 16000),
FluidRegistry.getFluidStack("ic2coolant", 16000),
Expand Down

0 comments on commit 6ddb298

Please sign in to comment.