From d50908dedb392a15a6493a83dc08aa093197f968 Mon Sep 17 00:00:00 2001 From: mrkubax10 Date: Sat, 6 Dec 2025 14:51:15 +0100 Subject: [PATCH] Describe jetpacks in guide --- guide.lua | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/guide.lua b/guide.lua index 71751df..0d5ee78 100644 --- a/guide.lua +++ b/guide.lua @@ -1335,6 +1335,45 @@ local pages={ } },S("Electric Treetap"),5) } + }, + + { + name="jetpacks", + title=S("Jetpacks"), + icon="industrialtest:jetpack_v", + content={ + [[ + ||Jetpacks|| + + ||Jetpacks allow to combat against the gravity after pressing the jump key. They are equipped as chest part of armor. There are two jetpack types:|| + + + || Jetpack - regular jetpack which is powered by fuel, can be refilled in Canning Machine.|| + + ]], + createMachineInformationTable({ + { + name="Fuel capacity", + value=string.format("%d mB",industrialtest.Jetpack.capacity) + } + },S("Jetpack")), + [[ + + + || Electric Jetpack - jetpack powered by electricity.|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="LV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.ElectricJetpack.capacity) + } + },S("Electric Jetpack"),2) + } } }