aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorAlexdoru <57050655+Alexdoru@users.noreply.github.com>2024-11-28 19:08:32 +0100
committerGitHub <noreply@github.com>2024-11-28 18:08:32 +0000
commit9153ea63809a30b80915dc665bd2b328e72ccef9 (patch)
tree5564890d9e78f8f70eaa469134c073831371eaed /src/main/java
parente41a0889c5f498252691180b143c97b570b2fc6b (diff)
downloadGT5-Unofficial-9153ea63809a30b80915dc665bd2b328e72ccef9.tar.gz
GT5-Unofficial-9153ea63809a30b80915dc665bd2b328e72ccef9.tar.bz2
GT5-Unofficial-9153ea63809a30b80915dc665bd2b328e72ccef9.zip
Add info in the tooltip of the chemplant (#3559)
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/bartworks/common/tileentities/multis/MTEDeepEarthHeatingPump.java3
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/MTEChemicalPlant.java13
2 files changed, 10 insertions, 6 deletions
diff --git a/src/main/java/bartworks/common/tileentities/multis/MTEDeepEarthHeatingPump.java b/src/main/java/bartworks/common/tileentities/multis/MTEDeepEarthHeatingPump.java
index 60a69abbf1..da8599dd28 100644
--- a/src/main/java/bartworks/common/tileentities/multis/MTEDeepEarthHeatingPump.java
+++ b/src/main/java/bartworks/common/tileentities/multis/MTEDeepEarthHeatingPump.java
@@ -87,8 +87,7 @@ public class MTEDeepEarthHeatingPump extends MTEDrillerBase {
.addInfo("Each maintenance issue lowers output efficiency by 10%")
.addInfo("Explodes when it runs out of Distilled Water/Coolant");
- tt.addSeparator()
- .beginStructureBlock(3, 7, 3, false)
+ tt.beginStructureBlock(3, 7, 3, false)
.addController("Front bottom")
.addOtherStructurePart(casings, "form the 3x1x3 Base")
.addOtherStructurePart(casings, "1x3x1 pillar above the center of the base (2 minimum total)")
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/MTEChemicalPlant.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/MTEChemicalPlant.java
index 63941f2139..eef957cd8a 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/MTEChemicalPlant.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/MTEChemicalPlant.java
@@ -130,11 +130,17 @@ public class MTEChemicalPlant extends GTPPMultiBlockBase<MTEChemicalPlant> imple
@Override
protected MultiblockTooltipBuilder createTooltip() {
- MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder();
- tt.addMachineType(getMachineType())
+ return new MultiblockTooltipBuilder().addMachineType(getMachineType())
.addInfo("Heavy Industry, now right at your doorstep!")
- .addInfo("Please read the user manual for more information on construction and usage")
+ .addInfo("Plant tier is determined by casing tier")
+ .addInfo("Hatch tiers can't be higher than machine casing tier, UHV casing unlocks all tiers")
+ .addInfo("Higher tier coils increases processing speed : T1 = 50%, T2 = 100%, T3 = 150%...")
+ .addInfo("Higher tier pipe casing boosts parallel and reduces catalyst consumption :")
+ .addInfo("+2 parallel per tier, +20% chance of not damaging catalyst per tier")
+ .addInfo("Any catalyst must be placed in the catalyst housing")
+ .addInfo("Awakened Draconium coils combined with Tungstensteel pipe casing makes catalyst unbreakable")
.addController("Bottom Center")
+ .addOtherStructurePart("Catalyst Housing", "Bottom Casing")
.addStructureHint("Catalyst Housing", 1)
.addInputBus("Bottom Casing", 1)
.addOutputBus("Bottom Casing", 1)
@@ -147,7 +153,6 @@ public class MTEChemicalPlant extends GTPPMultiBlockBase<MTEChemicalPlant> imple
.addSubChannelUsage("coil", "heating coil blocks")
.addSubChannelUsage("pipe", "pipe casing blocks")
.toolTipFinisher();
- return tt;
}
public void setMachineMeta(int meta) {