diff options
| author | StaffiX <32968022+StaffiX@users.noreply.github.com> | 2024-11-16 19:10:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-16 18:10:56 +0000 |
| commit | 04e037f0613c54b7867b2b4f438de8889bd9368a (patch) | |
| tree | 963bb6062190821f72a4c976c712a9b5c72160ab /src/main/java/goodgenerator/blocks/tileEntity | |
| parent | 77b7b9022962e5bedc9179bcb0f3e79bcde3d8aa (diff) | |
| download | GT5-Unofficial-04e037f0613c54b7867b2b4f438de8889bd9368a.tar.gz GT5-Unofficial-04e037f0613c54b7867b2b4f438de8889bd9368a.tar.bz2 GT5-Unofficial-04e037f0613c54b7867b2b4f438de8889bd9368a.zip | |
Improve EHE info and buff lava in EHE (#3494)
Diffstat (limited to 'src/main/java/goodgenerator/blocks/tileEntity')
| -rw-r--r-- | src/main/java/goodgenerator/blocks/tileEntity/MTEExtremeHeatExchanger.java | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/MTEExtremeHeatExchanger.java b/src/main/java/goodgenerator/blocks/tileEntity/MTEExtremeHeatExchanger.java index 493ce3850f..34277effaf 100644 --- a/src/main/java/goodgenerator/blocks/tileEntity/MTEExtremeHeatExchanger.java +++ b/src/main/java/goodgenerator/blocks/tileEntity/MTEExtremeHeatExchanger.java @@ -204,16 +204,23 @@ public class MTEExtremeHeatExchanger extends MTETooltipMultiBlockBaseEM protected MultiblockTooltipBuilder createTooltip() { final MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder(); tt.addMachineType("Heat Exchanger/Plasma Heat Exchanger") - .addInfo("Accept Hot fluid like lava, hot coolant or plasma.") - .addInfo("Output SC Steam/SH Steam/Steam.") - .addInfo("Check NEI for more info.") + .addInfo("Outputs SH steam by cooling hot fluids with distilled water.") + .addInfo("Supplying more hot fluid than the threshold causes overheating,") + .addInfo("producing SC steam instead.") + .addInfo("Plasma always produces SC steam.") + .addInfo("Maximum input and output values per second are shown in NEI.") + .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; } |
