diff options
author | GlodBlock <1356392126@qq.com> | 2021-07-20 22:35:31 +0800 |
---|---|---|
committer | GlodBlock <1356392126@qq.com> | 2021-07-20 22:35:31 +0800 |
commit | fec7c69632f9e1dad46e0471d73fb8be688c5320 (patch) | |
tree | 044d641cb14d5f6b81d3fcc048ad1276a885117a /src/main/java/GoodGenerator/Blocks/TEs/MultiNqGenerator.java | |
parent | 387e7750b19d5f06caa4e14cc1c4da1a10ce968c (diff) | |
download | GT5-Unofficial-fec7c69632f9e1dad46e0471d73fb8be688c5320.tar.gz GT5-Unofficial-fec7c69632f9e1dad46e0471d73fb8be688c5320.tar.bz2 GT5-Unofficial-fec7c69632f9e1dad46e0471d73fb8be688c5320.zip |
make tooltip colorful
Diffstat (limited to 'src/main/java/GoodGenerator/Blocks/TEs/MultiNqGenerator.java')
-rw-r--r-- | src/main/java/GoodGenerator/Blocks/TEs/MultiNqGenerator.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/GoodGenerator/Blocks/TEs/MultiNqGenerator.java b/src/main/java/GoodGenerator/Blocks/TEs/MultiNqGenerator.java index 38ec9ced0b..fdbe5bcdd6 100644 --- a/src/main/java/GoodGenerator/Blocks/TEs/MultiNqGenerator.java +++ b/src/main/java/GoodGenerator/Blocks/TEs/MultiNqGenerator.java @@ -24,6 +24,7 @@ import gregtech.api.util.GT_Recipe; import gregtech.api.util.GT_Utility; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.fluids.FluidRegistry; import net.minecraftforge.fluids.FluidStack; import org.lwjgl.input.Keyboard; @@ -382,7 +383,7 @@ public class MultiNqGenerator extends GT_MetaTileEntity_MultiblockBase_EM implem .addInfo("Environmental Friendly!") .addInfo("Generate power with the High-energy liquid.") .addInfo("Input liquid nuclear fuel or liquid naquadah fuel.") - .addInfo("The reactor will explode when there are more than ONE types of fuel in the hatch!") + .addInfo("The reactor will explode when there are more than" + EnumChatFormatting.RED + " ONE" + EnumChatFormatting.GRAY + " types of fuel in the hatch!") .addInfo("Consume coolant 50mb/t to increase the efficiency:") .addInfo("IC2 Coolant 105%, Super Coolant 150%, Cryotheum 275%") .addInfo("Consume excited liquid to increase the output power:") @@ -394,7 +395,7 @@ public class MultiNqGenerator extends GT_MetaTileEntity_MultiblockBase_EM implem .beginStructureBlock(7, 8, 7, true) .addController("Front bottom") .addInfo("The structure is too complex!") - .addInfo("Follow the TecTech blueprint to build the main structure.") + .addInfo("Follow the" + EnumChatFormatting.DARK_BLUE + " Tec" + EnumChatFormatting.BLUE + "Tech" + EnumChatFormatting.GRAY + " blueprint to build the main structure.") .addEnergyHatch("Any bottom layer casing, only accept ONE!") .addInputHatch("Any bottom layer casing") .addOutputHatch("Any bottom layer casing") |