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)
+ }
}
}