diff options
author | Sampsa <69092953+S4mpsa@users.noreply.github.com> | 2024-09-16 20:37:16 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 20:37:16 +0300 |
commit | 95280a1ed4c80c0b6e3008eb9fb4028ceed6f32e (patch) | |
tree | e8b4b4175cfe55dde8deae40391ee29a594b1ddf /src/main/java/goodgenerator | |
parent | 49dbb5d1fb3fc86c551a545b94bed5c125fcce97 (diff) | |
download | GT5-Unofficial-95280a1ed4c80c0b6e3008eb9fb4028ceed6f32e.tar.gz GT5-Unofficial-95280a1ed4c80c0b6e3008eb9fb4028ceed6f32e.tar.bz2 GT5-Unofficial-95280a1ed4c80c0b6e3008eb9fb4028ceed6f32e.zip |
Clarify Antimatter Forge tooltip (#3210)
Diffstat (limited to 'src/main/java/goodgenerator')
-rw-r--r-- | src/main/java/goodgenerator/blocks/tileEntity/AntimatterForge.java | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/AntimatterForge.java b/src/main/java/goodgenerator/blocks/tileEntity/AntimatterForge.java index f019f8f7cd..1749b07df8 100644 --- a/src/main/java/goodgenerator/blocks/tileEntity/AntimatterForge.java +++ b/src/main/java/goodgenerator/blocks/tileEntity/AntimatterForge.java @@ -229,8 +229,15 @@ public class AntimatterForge extends MTEExtendedPowerMultiBlockBase<AntimatterFo + EnumChatFormatting.AQUA + String.valueOf(this.baseSkew) + EnumChatFormatting.GRAY - + ", 1) of antimatter per cycle, consuming equal amounts of Protomatter") - .addInfo("The change can be negative! (N = Normal Distribution with mean of 0.2)") + + ", 0.25) of antimatter per cycle, consuming equal amounts of Protomatter") + .addInfo( + "The change is split between the 16 Antimatter Hatches, sampled from N(" + EnumChatFormatting.AQUA + + String.valueOf(this.baseSkew) + + EnumChatFormatting.GRAY + + ", 1) (Gaussian distribution with mean of " + + String.valueOf(this.baseSkew) + + ")") + .addInfo("The total change can be negative!") .addSeparator() .addInfo("Can be supplied with stabilization fluids to improve antimatter generation") .addInfo( @@ -299,6 +306,7 @@ public class AntimatterForge extends MTEExtendedPowerMultiBlockBase<AntimatterFo "2. Depleted Naquadah Fuel Mk VI - Distribution skew " + EnumChatFormatting.AQUA + "+0.10" + EnumChatFormatting.GRAY) + .addInfo("Each stabilization can only use one of the fluids at a time") .addSeparator() .addCasingInfoMin("Antimatter Containment Casing", 512, false) .addCasingInfoMin("Magnetic Flux Casing", 2274, false) |