diff options
author | Jakub <53441451+kuba6000@users.noreply.github.com> | 2023-03-08 14:44:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-08 14:44:52 +0100 |
commit | 64f218033121f9fd8ff936de36e8b9b53d2cf27d (patch) | |
tree | 22f22fe0b1d332bc75d91fc8e20d7a566783e633 /src/main/java/kubatech/tileentity/gregtech/multiblock | |
parent | ebf442c49ef4404acfbeeabb578f6db769697400 (diff) | |
download | GT5-Unofficial-64f218033121f9fd8ff936de36e8b9b53d2cf27d.tar.gz GT5-Unofficial-64f218033121f9fd8ff936de36e8b9b53d2cf27d.tar.bz2 GT5-Unofficial-64f218033121f9fd8ff936de36e8b9b53d2cf27d.zip |
Update description of EEC (#56)
* Update description of EEC
* Fix structure info
* spotlessApply (#57)
Co-authored-by: GitHub GTNH Actions <>
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/main/java/kubatech/tileentity/gregtech/multiblock')
-rw-r--r-- | src/main/java/kubatech/tileentity/gregtech/multiblock/GT_MetaTileEntity_ExtremeExterminationChamber.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/main/java/kubatech/tileentity/gregtech/multiblock/GT_MetaTileEntity_ExtremeExterminationChamber.java b/src/main/java/kubatech/tileentity/gregtech/multiblock/GT_MetaTileEntity_ExtremeExterminationChamber.java index 3dbb2c29b5..d74958b76b 100644 --- a/src/main/java/kubatech/tileentity/gregtech/multiblock/GT_MetaTileEntity_ExtremeExterminationChamber.java +++ b/src/main/java/kubatech/tileentity/gregtech/multiblock/GT_MetaTileEntity_ExtremeExterminationChamber.java @@ -221,10 +221,11 @@ public class GT_MetaTileEntity_ExtremeExterminationChamber .addInfo(Author).addInfo("Spawns and Exterminates monsters for you") .addInfo("You have to insert the powered spawner in controller") .addInfo("Base energy usage: 2,000 EU/t") - .addInfo("Supports perfect OC and past 1 tick (multiplies outputs)") + .addInfo("Supports perfect OC, minimum time: 20 ticks, after that multiplies the outputs") .addInfo("Recipe time is based on mob health") .addInfo("You can additionally put a weapon to the ULV input bus") .addInfo("It will speed up the process and apply looting level from the weapon (maximum 4 levels)") + .addInfo(EnumChatFormatting.RED + "Enchanting the spikes inside does nothing!") .addInfo("Also produces 120 Liquid XP per operation").addInfo("If the mob spawns infernal") .addInfo("it will drain 8 times more power") .addInfo("You can prevent infernal spawns by shift clicking with a screwdriver") @@ -238,13 +239,13 @@ public class GT_MetaTileEntity_ExtremeExterminationChamber .addOtherStructurePart("Borosilicate Glass", "All walls without corners") .addStructureInfo("The glass tier limits the Energy Input tier") .addOtherStructurePart("Steel Frame Box", "All vertical corners (except top and bottom)") - .addOtherStructurePart("Diamond spikes", "Inside second layer").addOutputBus("Any casing", 1) + .addOtherStructurePart("Diamond spikes", "Inside second layer").addOutputBus("Any bottom casing", 1) .addOtherStructurePart( "1x ULV " + StatCollector.translateToLocal("GT5U.MBTT.InputBus"), - "Any casing", + "Any bottom casing", 1) - .addOutputHatch("Any casing", 1).addEnergyHatch("Any casing", 1).addMaintenanceHatch("Any casing", 1) - .toolTipFinisher(Tags.MODNAME); + .addOutputHatch("Any bottom casing", 1).addEnergyHatch("Any bottom casing", 1) + .addMaintenanceHatch("Any bottom casing", 1).toolTipFinisher(Tags.MODNAME); return tt; } |