From c0a6800447fdb87e266acfb47f35b5f765c74fe3 Mon Sep 17 00:00:00 2001 From: Martin Robertz Date: Thu, 2 Dec 2021 16:53:40 +0100 Subject: add select circuit gui for machine and circuits itself (#773) also fixed some issue with basic machine gui introduced in 9d42b299def1c41bbc7a1f01efe445be28f54399 also retrofitted volumetric flask to use the new INetworkUpdatableItem and GT_Packet_UpdateItem, deprecating MessageSetFlaskCapacity in the meanwhile. To open the gui for machine, shift-left-click the circuit slot To open the gui for circuit, click any block (need to be sneaking if it's chest, furnace, etc) with the circuit held in hand. Signed-off-by: Glease <4586901+Glease@users.noreply.github.com> Co-authored-by: Glease <4586901+Glease@users.noreply.github.com> --- src/main/resources/assets/gregtech/lang/en_US.lang | 11 +++++++++++ .../assets/gregtech/textures/gui/GuiButtons.png | Bin 9910 -> 7903 bytes 2 files changed, 11 insertions(+) (limited to 'src/main/resources/assets/gregtech') diff --git a/src/main/resources/assets/gregtech/lang/en_US.lang b/src/main/resources/assets/gregtech/lang/en_US.lang index 7aab353061..b4767de05d 100644 --- a/src/main/resources/assets/gregtech/lang/en_US.lang +++ b/src/main/resources/assets/gregtech/lang/en_US.lang @@ -80,6 +80,17 @@ GT5U.machines.oilfluidpump=Oil/Fluid Pump GT5U.machines.minermulti=Multiblock Miner GT5U.machines.voidoveflow.enabled=Overflow voiding enabled GT5U.machines.voidoveflow.disabled=Overflow voiding disabled +GT5U.machines.select_circuit=Select Machine Mode + +GT5U.gui.select.current=Current: + +GT5U.item.programmed_circuit.select.header=Reprogram Circuit +# Note to translators: this translation entry is supposed to be a number indicating how many taunts you define here +# Game will randomly display one of them +GT5U.item.programmed_circuit.no_screwdriver.count=3 +GT5U.item.programmed_circuit.no_screwdriver.0=Trying to mangle a CIRCUIT with your bare hand again huh? +GT5U.item.programmed_circuit.no_screwdriver.1=Your thumb is not a screwdriver. Try a real one. +GT5U.item.programmed_circuit.no_screwdriver.2=Chuck Norris stares at the circuit until it reprograms itself. You do not. GT5U.hatch.disableFilter.true=Input Filter Off GT5U.hatch.disableFilter.false=Input Filter On diff --git a/src/main/resources/assets/gregtech/textures/gui/GuiButtons.png b/src/main/resources/assets/gregtech/textures/gui/GuiButtons.png index 54f5230e7a..f28d991bd7 100644 Binary files a/src/main/resources/assets/gregtech/textures/gui/GuiButtons.png and b/src/main/resources/assets/gregtech/textures/gui/GuiButtons.png differ -- cgit