From 42378a433141b2f2fe479a58d317686cc71770ad Mon Sep 17 00:00:00 2001 From: mrkubax10 Date: Sun, 7 Dec 2025 11:03:27 +0100 Subject: [PATCH] Describe item power storage in guide --- guide.lua | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/guide.lua b/guide.lua index 233395a..9e2d225 100644 --- a/guide.lua +++ b/guide.lua @@ -1338,6 +1338,81 @@ local pages={ } }, + { + name="itemPowerStorage", + title=S("Item power storage"), + icon="industrialtest:re_battery", + content={ + [[ + ||Item power storage|| + + ||There are items which purpose is solely to store power in them. Those are following:|| + + + || RE-Battery|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="LV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.REBattery.capacity) + } + },S("RE-Battery")), + [[ + + + || Advanced RE-Battery|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="MV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.AdvancedREBattery.capacity) + } + },S("Advanced RE-Battery"),2), + [[ + + + || Energy Crystal|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="HV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.EnergyCrystal.capacity) + } + },S("Energy Crystal"),3), + [[ + + + || Lapotron Crystal|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="EV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.LapotronCrystal.capacity) + } + },S("Lapotron Crystal"),4) + } + }, + { name="jetpacks", title=S("Jetpacks"),