aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2022-01-29 21:04:44 +0100
committerGitHub <noreply@github.com>2022-01-29 21:04:44 +0100
commit8cc0619706f93b4e81fb930ec7fb85cdcbd5d734 (patch)
tree93a17fee33360462e89e8ba2b54b489ce63581f2 /src/main/java/gtPlusPlus
parente6cf306db03be7166f0e755433bab63bfd390bce (diff)
parent2fd67af29c72ba3b5d0b3e49c3cb5404ca99aab0 (diff)
downloadGT5-Unofficial-8cc0619706f93b4e81fb930ec7fb85cdcbd5d734.tar.gz
GT5-Unofficial-8cc0619706f93b4e81fb930ec7fb85cdcbd5d734.tar.bz2
GT5-Unofficial-8cc0619706f93b4e81fb930ec7fb85cdcbd5d734.zip
Merge pull request #97 from Steelux8/Rocketdyne_Tooltip
Rocketdyne Tooltip Changes
Diffstat (limited to 'src/main/java/gtPlusPlus')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_LargeRocketEngine.java17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_LargeRocketEngine.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_LargeRocketEngine.java
index 28d82bc492..6ff34f405a 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_LargeRocketEngine.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_LargeRocketEngine.java
@@ -81,14 +81,17 @@ public class GregtechMetaTileEntity_LargeRocketEngine extends GregtechMeta_Multi
GT_Multiblock_Tooltip_Builder tt = new GT_Multiblock_Tooltip_Builder();
tt.addMachineType(getMachineType())
.addInfo("Controller Block for the Large Rocket Engine")
- .addInfo("Supply Rocket Fuels and 1000L(3000L boosted) of " + mLubricantName + " per hour to run")
- .addInfo("Supply 4L of " + mCoolantName + " per second per 2100 eu/t to boost output (optional)")
- .addInfo("Consumes 2000L/s of air per 16384 eu/t produced")
- .addInfo("Produces as much energy as you put fuel in")
- .addInfo("Produces 1500 pollution/S per 16384 eu/t produced")
- .addInfo("When producing more then 32K eu/t fuel wil be consume less efficiently (3x - 1.5x eff@57Keu/t input energy)")
+ .addInfo("Supply Rocket Fuels and 1000L of " + mLubricantName + " per hour")
+ .addInfo("Produces as much energy as you put fuel in, with optional boosting")
+ .addInfo("Supply 4L of " + mCoolantName + " per second, per 2100 EU/t to boost")
+ .addInfo("Takes 3x the amount of fuel and " + mLubricantName + "to run 3x faster")
+ .addInfo("Consumes 2000L/s of air and pollutes 1500 gibbl/s per 16384 eu/t produced")
+ .addInfo("If producing more than 18.4k EU/t, fuel will be consumed less efficiently:")
+ .addInfo("- 75% of max fuel efficiency at 44k EU/t output energy")
+ .addInfo("- 50% of max fuel efficiency at 105k EU/t output energy")
+ .addInfo("- 25% of max fuel efficiency at 294k EU/t output energy")
+ .addInfo("(These thresholds are 3x higher when boosted)")
.addInfo("formula: x = input of energy (10K^(1/3)/ x^(1/3)) * (40K^(1/3)/ x^(1/3))")
- .addInfo("Boosting will produce 3x the amount of power but will consume 3x fuel")
.addSeparator()
.beginStructureBlock(3, 3, 10, false)
.addController("Front Center")