From 387a77c54bb22a39cf1c9cfa7c70615d3b09c783 Mon Sep 17 00:00:00 2001 From: mrkubax10 Date: Mon, 8 Dec 2025 15:12:54 +0100 Subject: [PATCH] Describe scanners in guide --- guide.lua | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) diff --git a/guide.lua b/guide.lua index b868c65..dee1a95 100644 --- a/guide.lua +++ b/guide.lua @@ -1728,6 +1728,73 @@ local pages={ } },S("Quantum Boots"),4) } + }, + + { + name="scanners", + title=S("Scanners"), + icon="industrialtest:od_scanner", + content={ + [[ + ||Scanners|| + + ||These tools provide way of detecting nearby ores in terrain. Such tool can be put to appropriate slot in Miner so it mines ores detected by scanner. Furthermore it can be used by player as well. There are currently 2 ore scanners which differ in detection range:|| + + + || OD Scanner|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="MV" + }, + { + name="powerStorage", + value=string.format("%d EU",industrialtest.ODScanner.capacity) + }, + { + name="opPower", + value=string.format("%d EU",industrialtest.ODScanner:getOpPower()) + }, + { + name="Distance", + value=tostring(industrialtest.ODScanner.distance) + }, + { + name="Distance in Miner", + value=tostring(industrialtest.ODScanner.minerDistance) + } + },S("OD Scanner")), + [[ + + + || OV Scanner|| + + ]], + createMachineInformationTable({ + { + name="voltage", + value="MV" + }, + { + name="powerStorage", + value=string.format("%d EU",industrialtest.OVScanner.capacity) + }, + { + name="opPower", + value=string.format("%d EU",industrialtest.OVScanner:getOpPower()) + }, + { + name="Distance", + value=tostring(industrialtest.OVScanner.distance) + }, + { + name="Distance in Miner", + value=tostring(industrialtest.OVScanner.minerDistance) + } + },S("OV Scanner"),2) + } } }