Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Commit

Permalink
changing the magic letters to an understandable modes (9in1) (#860)
Browse files Browse the repository at this point in the history
changing the magic letters to an understandable mode
* bs
  • Loading branch information
Quetz4l authored Mar 24, 2024
1 parent d42582d commit 42a553c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/main/java/gtPlusPlus/core/handler/BookHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ public static void run() {
"This Multiblock, depending upon the mode used, can function as a variety of different machines. The idea behind this, was that most of these machines are rather niche compared to any others, as such, not used often.",
"To build, you need to construct a hollow 3x3x3 structure made from Multi-Use casings, With a minimum of 6. Any Casing position can be substituted out with an Input Hatch/Bus, an Output Hatch/Bus, Muffler, Maint. Hatch or Energy Injector Hatch.",
"The Mode can be set by using a Screwdriver on the controller block. Each mode allows the use of Numbered Circuits, to allow a different machine 'type' for each input bus.",
"[Metal Work] Mode A - Allows the multiblock to function as a Compressor, a Lathe or an Electro-Magnet. To allow a hatch to run in Compressor mode, insert a No. 20 circuit. For Lathe, use No. 21 and for Electro-Magnet use No. 22.",
"[Fluid Work] Mode B - Allows the multiblock to function as a Fermenter, a Fluid Extractor or an Extractor. To allow a hatch to run in Fermenter mode, insert a No. 20 circuit. For Fluid Extractor, use No. 21 and for Extractor use No. 22.",
"[Misc. Work] Mode C - Allows the multiblock to function as a Laser Engraver, an Autoclave or a Fluid Solidifier. To allow a hatch to run in Laser Engraver mode, insert a No. 20 circuit. For Autoclave, use No. 21 and for Solidifier use No. 22.", });
"[Metal Work] Mode Metal - Allows the multiblock to function as a Compressor, a Lathe or an Electro-Magnet. To allow a hatch to run in Compressor mode, insert a No. 20 circuit. For Lathe, use No. 21 and for Electro-Magnet use No. 22.",
"[Fluid Work] Mode Fluid - Allows the multiblock to function as a Fermenter, a Fluid Extractor or an Extractor. To allow a hatch to run in Fermenter mode, insert a No. 20 circuit. For Fluid Extractor, use No. 21 and for Extractor use No. 22.",
"[Misc. Work] Mode Misc - Allows the multiblock to function as a Laser Engraver, an Autoclave or a Fluid Solidifier. To allow a hatch to run in Laser Engraver mode, insert a No. 20 circuit. For Autoclave, use No. 21 and for Solidifier use No. 22.", });

book_NuclearManual = writeBookTemplate(
"Manual_NuclearStuff_1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@ protected GT_Multiblock_Tooltip_Builder createTooltip() {
.addInfo("250% faster than using single block machines of the same voltage")
.addInfo("Only uses 80% of the EU/t normally required").addInfo("Processes two items per voltage tier")
.addInfo(
"Machine Type: [A] - " + EnumChatFormatting.YELLOW
"Machine Type: Metal - " + EnumChatFormatting.YELLOW
+ aBuiltStrings[0]
+ EnumChatFormatting.RESET)
.addInfo(
"Machine Type: [B] - " + EnumChatFormatting.YELLOW
"Machine Type: Fluid - " + EnumChatFormatting.YELLOW
+ aBuiltStrings[1]
+ EnumChatFormatting.RESET)
.addInfo(
"Machine Type: [C] - " + EnumChatFormatting.YELLOW
"Machine Type: Misc - " + EnumChatFormatting.YELLOW
+ aBuiltStrings[2]
+ EnumChatFormatting.RESET)
.addInfo("Read Multi-Machine Manual for extra information")
Expand Down

0 comments on commit 42a553c

Please sign in to comment.