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