diff --git a/guide.lua b/guide.lua index f2408cf..f6b4e7f 100644 --- a/guide.lua +++ b/guide.lua @@ -588,6 +588,46 @@ local pages={ ||Picture 1. Mass Fabricator producing UU-Matter from Scrap.|| ]] } + }, + + { + name="miner", + title=S("Miner"), + icon="industrialtest:miner", + content={ + [[ + ||Miner|| + + ||Miner when placed on ground will use drill and Mining Pipe put in appropriate slots to dig below it. Besides that one can put OV Scanner or OD Scanner to increase horizontal range of digging.|| + + ]], + createMachineInformationTable({ + { + name="inputVoltage", + value="LV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.Miner.capacity) + }, + { + name="opPower", + value=string.format("%d EU",industrialtest.Miner._opPower) + }, + { + name="Power per scanner operation", + value=string.format("%d EU",industrialtest.Miner._scannerOpPower) + } + },S("Miner")), + [[ + + ||Picture 1. Miner formspec with Electric Drill and Mining Pipe.|| + + + + ||Picture 2. Miner digging.|| + ]] + } } } diff --git a/textures/industrialtest_guide_miner_digging.png b/textures/industrialtest_guide_miner_digging.png new file mode 100644 index 0000000..d2ec30b Binary files /dev/null and b/textures/industrialtest_guide_miner_digging.png differ diff --git a/textures/industrialtest_guide_miner_formspec.png b/textures/industrialtest_guide_miner_formspec.png new file mode 100644 index 0000000..ec8e73b Binary files /dev/null and b/textures/industrialtest_guide_miner_formspec.png differ