From ae26f0fe58b2e4905d820a5c321ff69456ca5880 Mon Sep 17 00:00:00 2001 From: mrkubax10 Date: Fri, 5 Dec 2025 09:46:40 +0100 Subject: [PATCH] Describe electric toolset in guide --- guide.lua | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) diff --git a/guide.lua b/guide.lua index 7f3f247..71751df 100644 --- a/guide.lua +++ b/guide.lua @@ -1250,6 +1250,91 @@ local pages={ } },S("LapPack"),2) } + }, + + { + name="electricToolset", + title=S("Electric toolset"), + icon="industrialtest:electric_drill", + content={ + [[ + ||Electric toolset|| + + ||Electric toolset consists of typical tools like pickaxe but powered by electricity. While used they don't wear out but instead discharge which allow them to be reused. When completely discharged it's still possible to use the tool but it will be considerably slower. Those are (regular and advanced version):|| + + + || Electric Chainsaw|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="LV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.ElectricChainsaw.capacity) + } + },S("Electric Chainsaw")), + [[ + + + || Electric Drill|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="LV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.ElectricDrill.capacity) + } + },S("Electric Drill"),2), + [[ + + || Electric Hoe|| + ]], + createMachineInformationTable({ + { + name="voltage", + value="LV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.ElectricHoe.capacity) + } + },S("Electric Hoe"),3), + [[ + + || Electric Saber|| + ]], + createMachineInformationTable({ + { + name="voltage", + value="LV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.ElectricSaber.capacity) + } + },S("Electric Saber"),4), + [[ + + || Electric Treetap|| + ]], + createMachineInformationTable({ + { + name="voltage", + value="LV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.ElectricTreetap.capacity) + } + },S("Electric Treetap"),5) + } } }