From bd2e7f56f4181f6f1dc030ddcef5aae3ffc2e277 Mon Sep 17 00:00:00 2001 From: mrkubax10 Date: Sun, 7 Dec 2025 10:54:42 +0100 Subject: [PATCH] Describe Nano Suit in guide --- guide.lua | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) diff --git a/guide.lua b/guide.lua index de81528..233395a 100644 --- a/guide.lua +++ b/guide.lua @@ -69,6 +69,7 @@ local function createMachineInformationTable(fields,machineName,num) voltage="Voltage", lowVoltage="Low voltage", highVoltage="High voltage", + damageRed="Damage reduction", recipe="Recipe type", powerCapacity="Power capacity", opPower="Power per operation", @@ -1418,6 +1419,113 @@ local pages={ } },S("Mining Laser")) } + }, + + { + name="nanoSuit", + title=S("Nano Suit"), + icon="industrialtest:nano_bodyarmor", + content={ + [[ + ||Nano Suit|| + + ||Nano Suit is an armor which with power of electricity can reduce damage which player takes. It consists of following parts:|| + + + || Nano Helmet|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="EV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.NanoSuit.capacity) + }, + { + name="opPower", + value=string.format("%d EU",industrialtest.NanoSuit:getPowerPerDamageForItem()) + }, + { + name="damageRed", + value="0.12" + } + },S("Nano Helmet")), + [[ + + + || Nano Bodyarmor|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="EV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.NanoSuit.capacity) + }, + { + name="opPower", + value=string.format("%d EU",industrialtest.NanoSuit:getPowerPerDamageForItem()) + }, + { + name="damageRed", + value="0.32" + } + },S("Nano Bodyarmor"),2), + [[ + + + || Nano Leggings|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="EV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.NanoSuit.capacity) + }, + { + name="opPower", + value=string.format("%d EU",industrialtest.NanoSuit:getPowerPerDamageForItem()) + }, + { + name="damageRed", + value="0.3" + } + },S("Nano Leggings"),3), + [[ + + + || Nano Boots|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="EV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.NanoSuit.capacity) + }, + { + name="opPower", + value=string.format("%d EU",industrialtest.NanoSuit:getPowerPerDamageForItem()) + }, + { + name="damageRed", + value="0.24" + } + },S("Nano Boots"),4) + } } }