From bf193e98cd4ed16defc5435b8d64472faf8bea77 Mon Sep 17 00:00:00 2001 From: mrkubax10 Date: Tue, 9 Dec 2025 19:47:53 +0100 Subject: [PATCH] Describe Solar Helmet in guide --- compatibility.lua | 2 +- guide.lua | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/compatibility.lua b/compatibility.lua index 659d123..f361247 100644 --- a/compatibility.lua +++ b/compatibility.lua @@ -528,7 +528,7 @@ if industrialtest.mclAvailable then industrialtest.elementKeys.stoneWithCopper="mcl_copper:stone_with_copper" industrialtest.elementKeys.leadLump="industrialtest:raw_lead" industrialtest.elementKeys.ironPickaxe="mcl_tools:pick_iron" - industrialtest.elementKeys.ironHelmet="mcl_tools:helmet_iron" + industrialtest.elementKeys.ironHelmet="mcl_armor:helmet_iron" industrialtest.elementKeys.ironBoots="mcl_armor:boots_iron" industrialtest.elementKeys.lavaSource="mcl_core:lava_source" industrialtest.elementKeys.waterSource="mcl_core:water_source" diff --git a/guide.lua b/guide.lua index 5bfd88f..8228ce6 100644 --- a/guide.lua +++ b/guide.lua @@ -1800,6 +1800,26 @@ local pages={ ||Picture 1. OD Scanner detecting some ores.|| ]] } + }, + + { + name="solarHelmet", + title=S("Solar Helmet"), + icon="industrialtest:solar_helmet", + content={ + [[ + ||Solar Helmet|| + + ||Solar Helmet consists of Iron Helmet with Solar Panel attached to the top of it. It is capable of charging electric gear equipped as armor while exposed to light. However it is less efficent than regular solar panels.|| + + ]], + createMachineInformationTable({ + { + name="efficiency", + value="0.5" + } + },S("Solar Panel")) + } } } @@ -1849,6 +1869,7 @@ local function getGuideFormspec(playerName,pageName) elementKeyBucket=industrialtest.elementKeys.bucket, elementKeyCoal=industrialtest.elementKeys.coal, elementKeyCopperIngot=industrialtest.elementKeys.copperIngot, + elementKeyIronHelmet=industrialtest.elementKeys.ironHelmet, elementKeyIronIngot=industrialtest.elementKeys.ironIngot, elementKeyIronLump=industrialtest.elementKeys.ironLump, elementKeyIronPickaxe=industrialtest.elementKeys.ironPickaxe,