From c562159fb7137345ca0c3a38083e2e60b0812d29 Mon Sep 17 00:00:00 2001 From: Steelux <70096037+Steelux8@users.noreply.github.com> Date: Mon, 2 Jan 2023 17:13:07 +0000 Subject: Update the Solar Tower's Tooltip (#471) - More information added to the controller's tooltip, to help people understand how the multi works. --- .../machines/multi/production/GregtechMetaTileEntity_SolarTower.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main') diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_SolarTower.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_SolarTower.java index 9b84d2c622..6dedfd0e5d 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_SolarTower.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_SolarTower.java @@ -81,12 +81,15 @@ public class GregtechMetaTileEntity_SolarTower extends GregtechMeta_MultiBlockBa .addInfo("Output: " + MISC_MATERIALS.SOLAR_SALT_HOT.getLocalizedName()) .addInfo("Every cycle (10 seconds), heat increases and all the Cold Solar Salt is heated") .addInfo("Converting Cold to Hot Solar Salt reduces heat, equal to the amount converted") + .addInfo("This conversion only happens if heat >= 30000 and controller efficiency = 100%") .addInfo("If there's more Cold Salt than heat, all the heat is used up and returns to 0") .addInfo("The heat increase is most efficient at exactly half of maximum heat") .addInfo("Minimum efficiency at 0 or 100000 heat, maximum efficiency at 50000") .addInfo("Heat Efficiency formula: (|currentHeat - 50000| ^ 0.8 + 7000) / 7000") .addInfo("Heat gain per cycle: numberHeaters * heatEfficiency * (10 + bonus)") .addInfo("Bonus: 1 ring = +1, 2 rings = +2, 3 rings = +4, 4 rings = +8, 5 rings = +16") + .addInfo("Total number of reflectors based on how many rings are built:") + .addInfo("1 ring = 36, 2 rings = 88, 3 rings = 156, 4 rings = 240, 5 rings = 340") .addSeparator() .beginVariableStructureBlock(15, 31, 28, 28, 15, 31, false) .addController("Top Middle") -- cgit