Describe scanners in guide
This commit is contained in:
67
guide.lua
67
guide.lua
@@ -1728,6 +1728,73 @@ local pages={
|
|||||||
}
|
}
|
||||||
},S("Quantum Boots"),4)
|
},S("Quantum Boots"),4)
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
name="scanners",
|
||||||
|
title=S("Scanners"),
|
||||||
|
icon="industrialtest:od_scanner",
|
||||||
|
content={
|
||||||
|
[[
|
||||||
|
<big>||Scanners||</big>
|
||||||
|
<left>
|
||||||
|
||These tools provide way of detecting nearby ores in terrain. Such tool can be put to appropriate slot in <item name="industrialtest:miner" height="{{ITEM_HEIGHT}}"> <b>Miner</b> 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:||
|
||||||
|
</left>
|
||||||
|
<left>
|
||||||
|
||<item name="industrialtest:od_scanner" height="{{ITEM_HEIGHT}}"> <b>OD Scanner</b>||
|
||||||
|
</left>
|
||||||
|
]],
|
||||||
|
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")),
|
||||||
|
[[
|
||||||
|
<mono></mono>
|
||||||
|
<left>
|
||||||
|
||<item name="industrialtest:ov_scanner" height="{{ITEM_HEIGHT}}"> <b>OV Scanner</b>||
|
||||||
|
</left>
|
||||||
|
]],
|
||||||
|
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)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user