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"),