aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/goodgenerator/blocks/tileEntity/LargeFusionComputer3.java
diff options
context:
space:
mode:
authorJason Mitchell <mitchej@gmail.com>2023-01-28 18:39:10 -0800
committerJason Mitchell <mitchej@gmail.com>2023-01-28 18:39:10 -0800
commitb846f1dc3a502d157ecf871e2a4a1ff49915f871 (patch)
tree4a86feaaddd8d00d32f7cc093736d02be92bf358 /src/main/java/goodgenerator/blocks/tileEntity/LargeFusionComputer3.java
parent3194d4cbab82e336ecb82b5a2dc80153ed9b1b81 (diff)
downloadGT5-Unofficial-b846f1dc3a502d157ecf871e2a4a1ff49915f871.tar.gz
GT5-Unofficial-b846f1dc3a502d157ecf871e2a4a1ff49915f871.tar.bz2
GT5-Unofficial-b846f1dc3a502d157ecf871e2a4a1ff49915f871.zip
[ci skip] spotlessApply with the new settings
Diffstat (limited to 'src/main/java/goodgenerator/blocks/tileEntity/LargeFusionComputer3.java')
-rw-r--r--src/main/java/goodgenerator/blocks/tileEntity/LargeFusionComputer3.java42
1 files changed, 19 insertions, 23 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/LargeFusionComputer3.java b/src/main/java/goodgenerator/blocks/tileEntity/LargeFusionComputer3.java
index 4833e4abca..ff85da2303 100644
--- a/src/main/java/goodgenerator/blocks/tileEntity/LargeFusionComputer3.java
+++ b/src/main/java/goodgenerator/blocks/tileEntity/LargeFusionComputer3.java
@@ -4,7 +4,12 @@ import static goodgenerator.util.DescTextLocalization.BLUE_PRINT_INFO;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_FUSION3;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_FUSION3_GLOW;
+import net.minecraft.block.Block;
+import net.minecraft.item.ItemStack;
+import net.minecraft.util.EnumChatFormatting;
+
import com.github.bartimaeusnek.bartworks.common.loaders.ItemRegistry;
+
import goodgenerator.blocks.tileEntity.base.LargeFusionComputer;
import goodgenerator.loader.Loaders;
import goodgenerator.util.DescTextLocalization;
@@ -15,19 +20,12 @@ import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.render.TextureFactory;
import gregtech.api.util.GT_Multiblock_Tooltip_Builder;
-import net.minecraft.block.Block;
-import net.minecraft.item.ItemStack;
-import net.minecraft.util.EnumChatFormatting;
public class LargeFusionComputer3 extends LargeFusionComputer {
private static final ITexture textureOverlay = TextureFactory.of(
TextureFactory.builder().addIcon(OVERLAY_FUSION3).extFacing().build(),
- TextureFactory.builder()
- .addIcon(OVERLAY_FUSION3_GLOW)
- .extFacing()
- .glow()
- .build());
+ TextureFactory.builder().addIcon(OVERLAY_FUSION3_GLOW).extFacing().glow().build());
public LargeFusionComputer3(int id, String name, String nameRegional) {
super(id, name, nameRegional);
@@ -40,30 +38,28 @@ public class LargeFusionComputer3 extends LargeFusionComputer {
@Override
protected GT_Multiblock_Tooltip_Builder createTooltip() {
final GT_Multiblock_Tooltip_Builder tt = new GT_Multiblock_Tooltip_Builder();
- tt.addMachineType("Fusion Reactor")
- .addInfo("Millions of nuclear.")
+ tt.addMachineType("Fusion Reactor").addInfo("Millions of nuclear.")
.addInfo("Controller block for the Compact Fusion Reactor MK-III.")
.addInfo("1,572,864EU/t and 20M EU capacity per Energy Hatch")
.addInfo("If the recipe has a startup cost greater than the")
.addInfo("number of energy hatches * cap, you can't do it")
.addInfo("Make sure the whole structure is built in the 3x3")
.addInfo("chuck area of the ring center (not controller).")
- .addInfo("Startup < 160,000,000 EU: 192x Parallel")
- .addInfo("Startup < 320,000,000 EU: 128x Parallel")
+ .addInfo("Startup < 160,000,000 EU: 192x Parallel").addInfo("Startup < 320,000,000 EU: 128x Parallel")
.addInfo("Startup < 640,000,000 EU: 64x Parallel")
- .addInfo("Support" + EnumChatFormatting.BLUE + " Tec" + EnumChatFormatting.DARK_BLUE + "Tech"
- + EnumChatFormatting.GRAY + " Energy/Laser Hatches!")
- .addInfo("The structure is too complex!")
- .addInfo(BLUE_PRINT_INFO)
- .addSeparator()
- .addCasingInfo("Fusion Machine Casing MK II", 1664)
- .addCasingInfo("Advanced Compact Fusion Coil", 560)
+ .addInfo(
+ "Support" + EnumChatFormatting.BLUE
+ + " Tec"
+ + EnumChatFormatting.DARK_BLUE
+ + "Tech"
+ + EnumChatFormatting.GRAY
+ + " Energy/Laser Hatches!")
+ .addInfo("The structure is too complex!").addInfo(BLUE_PRINT_INFO).addSeparator()
+ .addCasingInfo("Fusion Machine Casing MK II", 1664).addCasingInfo("Advanced Compact Fusion Coil", 560)
.addCasingInfo("Neutronium Frame Box", 128)
.addCasingInfo("Osmium Reinforced Borosilicate Glass Block", 63)
- .addEnergyHatch("1-32, Hint block with dot 3", 3)
- .addInputHatch("2-16, Hint block with dot 1", 1)
- .addOutputHatch("1-16, Hint block with dot 2", 2)
- .addStructureInfo("ALL Hatches must be UV or better")
+ .addEnergyHatch("1-32, Hint block with dot 3", 3).addInputHatch("2-16, Hint block with dot 1", 1)
+ .addOutputHatch("1-16, Hint block with dot 2", 2).addStructureInfo("ALL Hatches must be UV or better")
.toolTipFinisher("Good Generator");
return tt;
}