diff --git a/guide.lua b/guide.lua
index 809f9d7..d96d6bc 100644
--- a/guide.lua
+++ b/guide.lua
@@ -759,6 +759,50 @@ local pages={
||Picture 1. BatBox with some energy.||
]]
}
+ },
+
+ {
+ name="pump",
+ title=S("Pump"),
+ icon="industrialtest:pump",
+ content={
+ [[
+ ||Pump||
+
+ ||Pump is used to pump fluids under it into internal fluid storage. It is later possible to move that fluid into some item, for example - Empty Cell. Pump when used together with
- Miner can pump fluids found.||
+
+ ]],
+ createMachineInformationTable({
+ {
+ name="inputVoltage",
+ value="LV"
+ },
+ {
+ name="powerCapacity",
+ value=string.format("%d EU",industrialtest.Pump.capacity)
+ },
+ {
+ name="opPower",
+ value=string.format("%d EU",industrialtest.Pump._opPower)
+ },
+ {
+ name="Fluid capacity",
+ value=string.format("%d mB",industrialtest.Pump._fluidCapacity)
+ },
+ {
+ name="Pump time",
+ value=string.format("%d seconds",industrialtest.Pump._pumpTime)
+ }
+ },S("Pump")),
+ [[
+
+ ||Picture 1. Pump with some fluid.||
+
+
+
+ ||Picture 1. Pump attached to - Miner.||
+ ]]
+ }
}
}
diff --git a/textures/industrialtest_guide_pump.png b/textures/industrialtest_guide_pump.png
new file mode 100644
index 0000000..4f06f7b
Binary files /dev/null and b/textures/industrialtest_guide_pump.png differ
diff --git a/textures/industrialtest_guide_pump_formspec.png b/textures/industrialtest_guide_pump_formspec.png
new file mode 100644
index 0000000..b19e93d
Binary files /dev/null and b/textures/industrialtest_guide_pump_formspec.png differ