From 0156f2e444817671358354d42247005162da3d30 Mon Sep 17 00:00:00 2001 From: 梅天佑 <52530814+MeiTianyou@users.noreply.github.com> Date: Mon, 22 May 2023 15:51:01 +0800 Subject: change tooltip to be clearer (#326) * change tooltip to be clearer * spotlessapply Former-commit-id: dc7895a0896d909b91beb0f57d4219b9133799db --- .../common/tileentities/multis/GT_TileEntity_THTR.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_THTR.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_THTR.java index f38dcdb49f..913f952b22 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_THTR.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_THTR.java @@ -144,15 +144,15 @@ public class GT_TileEntity_THTR extends GT_MetaTileEntity_EnhancedMultiBlockBase final GT_Multiblock_Tooltip_Builder tt = new GT_Multiblock_Tooltip_Builder(); tt.addMachineType("High Temperature Reactor") .addInfo("Controller block for the Thorium High Temperature Reactor (THTR)") + .addInfo("Needs to be primed with " + GT_Utility.formatNumbers(HELIUM_NEEDED) + " of helium") .addInfo("Needs a constant supply of coolant while running") .addInfo("Needs at least 100k Fuel pebbles to start operation (can hold up to 675k pebbles)") .addInfo("Consumes up to 0.5% of total Fuel Pellets per Operation depending on efficiency") - .addInfo( - "Efficiency is calculated exponentially depending on the amount of pebbles in the internal buffer") + .addInfo("Efficiency decreases exponentially if the internal buffer is not completely filled") .addInfo("Reactor will take 4 800L/t of coolant multiplied by efficiency") - .addInfo("Uses " + GT_Utility.formatNumbers(powerUsage) + " EU/t").addInfo("One Operation takes 9 hour") - .addSeparator().beginStructureBlock(11, 12, 11, true).addController("Front bottom center") - .addCasingInfo("Radiation Proof Casings", 500) + .addInfo("Uses " + GT_Utility.formatNumbers(powerUsage) + " EU/t") + .addInfo("One Operation takes 9 hours").addSeparator().beginStructureBlock(11, 12, 11, true) + .addController("Front bottom center").addCasingInfo("Radiation Proof Casings", 500) .addStructureInfo("Corners and the 2 touching blocks are air (cylindric)") .addInputBus("Any top layer casing", 2).addInputHatch("Any top layer casing", 2) .addOutputBus("Any bottom layer casing", 1).addOutputHatch("Any bottom layer casing", 1) -- cgit