aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech/common
diff options
context:
space:
mode:
authorMary <33456283+FourIsTheNumber@users.noreply.github.com>2024-11-14 09:18:08 -0500
committerGitHub <noreply@github.com>2024-11-14 14:18:08 +0000
commit78d61f626328702d1b6c9b937f84e2aa4119b009 (patch)
tree5d90a7d17d8f10c7b6c71a9f8eef0de57833c396 /src/main/java/gtPlusPlus/xmod/gregtech/common
parenta35585567574ee0d5dc4a7e0942df41346a7b809 (diff)
downloadGT5-Unofficial-78d61f626328702d1b6c9b937f84e2aa4119b009.tar.gz
GT5-Unofficial-78d61f626328702d1b6c9b937f84e2aa4119b009.tar.bz2
GT5-Unofficial-78d61f626328702d1b6c9b937f84e2aa4119b009.zip
Add explicit mention of exotic energy hatches (#3491)
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/MTELargeRocketEngine.java3
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/MTEQuantumForceTransformer.java2
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/mega/MTEMegaAlloyBlastSmelter.java4
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/MTELargerTurbineBase.java1
4 files changed, 7 insertions, 3 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/MTELargeRocketEngine.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/MTELargeRocketEngine.java
index 59ef34d5f2..c9247de4b7 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/MTELargeRocketEngine.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/MTELargeRocketEngine.java
@@ -97,7 +97,7 @@ public class MTELargeRocketEngine extends GTPPMultiBlockBase<MTELargeRocketEngin
protected MultiblockTooltipBuilder createTooltip() {
MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder();
tt.addMachineType(getMachineType())
- .addInfo("Generating Power from Rocket Fuels - Supports TecTech Multi-Amp Dynamos!")
+ .addInfo("Generating Power from Rocket Fuels")
.addInfo("Supply GT++ Rocket Fuels and 1000L of " + mLubricantName + " per hour")
.addInfo("Produces as much energy as you put fuel in, with optional boosting")
.addInfo("This multi doesn't accept fluids if not enabled - enable it first!")
@@ -113,6 +113,7 @@ public class MTELargeRocketEngine extends GTPPMultiBlockBase<MTELargeRocketEngin
.addInfo("- 50% of max fuel efficiency at 69k or 207k EU/t output energy")
.addInfo("- 25% of max fuel efficiency at 98k or 294k EU/t output energy")
.addInfo("formula: x = input of energy (30000^(1/3)/ x^(1/3)) * (80000^(1/3)/ x^(1/3))")
+ .addTecTechHatchInfo()
.beginStructureBlock(3, 3, 10, false)
.addController("Front Center")
.addCasingInfoMin(mCasingName, 64, false)
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/MTEQuantumForceTransformer.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/MTEQuantumForceTransformer.java
index 35c09be046..fdb4b52c3b 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/MTEQuantumForceTransformer.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/MTEQuantumForceTransformer.java
@@ -246,7 +246,6 @@ public class MTEQuantumForceTransformer extends MTEExtendedPowerMultiBlockBase<M
tt.addMachineType("Quantum Force Transformer")
.addInfo("Allows Complex chemical lines to be performed instantly in one step")
.addInfo("Every recipe requires a catalyst, each catalyst adds 1 parallel and lasts forever")
- .addInfo("Accepts TecTech Energy and Laser Hatches")
.addInfo("All inputs go on the bottom, all outputs go on the top")
.addInfo("Put a circuit in the controller to specify the focused output")
.addInfo("Check NEI to see the order of outputs, and which circuit number you need.")
@@ -260,6 +259,7 @@ public class MTEQuantumForceTransformer extends MTEExtendedPowerMultiBlockBase<M
.addInfo("Casing functions:")
.addInfo("Pulse Manipulators: Recipe Tier Allowed (check NEI for the tier of each recipe)")
.addInfo("Shielding Cores: Focusing Tier (equal to or higher than recipe tier to allow focus)")
+ .addTecTechHatchInfo()
.addPollutionAmount(getPollutionPerSecond(null))
.beginStructureBlock(15, 21, 15, true)
.addController("Bottom Center")
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/mega/MTEMegaAlloyBlastSmelter.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/mega/MTEMegaAlloyBlastSmelter.java
index 61b9f237ed..1f98e164b8 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/mega/MTEMegaAlloyBlastSmelter.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/mega/MTEMegaAlloyBlastSmelter.java
@@ -1,5 +1,6 @@
package gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.production.mega;
+import static bartworks.util.BWTooltipReference.TT;
import static com.gtnewhorizon.structurelib.structure.StructureUtility.ofBlock;
import static com.gtnewhorizon.structurelib.structure.StructureUtility.ofChain;
import static com.gtnewhorizon.structurelib.structure.StructureUtility.onElementPass;
@@ -297,7 +298,8 @@ public class MTEMegaAlloyBlastSmelter extends MTEExtendedPowerMultiBlockBase<MTE
+ EnumChatFormatting.RESET
+ EnumChatFormatting.GRAY)
.addInfo("The glass limits the tier of the energy hatch. UEV glass unlocks all tiers.")
- .addInfo("UV glass required for TecTech laser hatches.")
+ .addTecTechHatchInfo()
+ .addInfo("UV glass required for " + TT + " laser hatches.")
.addInfo(
EnumChatFormatting.ITALIC + "\"all it does is make metals hot\""
+ EnumChatFormatting.RESET
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/MTELargerTurbineBase.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/MTELargerTurbineBase.java
index a8c504b51a..fa3e43d8d4 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/MTELargerTurbineBase.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/MTELargerTurbineBase.java
@@ -156,6 +156,7 @@ public abstract class MTELargerTurbineBase extends GTPPMultiBlockBase<MTELargerT
tt.addInfo("Plasma fuel efficiency is lower for high tier turbines when using low-grade plasmas")
.addInfo("Efficiency = ((FuelValue / 200,000)^2) / (EU per Turbine)");
}
+ tt.addTecTechHatchInfo();
tt.addPollutionAmount(getPollutionPerSecond(null))
.beginStructureBlock(7, 9, 7, false)
.addController("Top Middle")