Module:MinerList: Difference between revisions
xp per hour when dropping deathstone doesnt work as you need to get more explosives anyway
(Add materials used (explosives) column) |
(xp per hour when dropping deathstone doesnt work as you need to get more explosives anyway) |
||
Line 95:
item.productPerHour = item.durationEffective and math.floor(1 / (item.durationEffective + item.downtime / item.batch) * 3600)
item.productPerHourDropping = item.durationEffective and 1 / (item.durationEffective) * 3600
-- properties per hour
item.xpPerHour = item.xp and item.productPerHour and math.floor(item.xp * item.productPerHour)
Line 221:
:END()
-- XP per hour discarding
:IF(not item.
:IF(item.xpPerHourDropping)
:tag('td')
:wikitext(item.xpPerHourDropping and lang:formatNum(tonumber(item.xpPerHourDropping)))▼
:ELSE()
:node(plist.unknown_value_cell(1))▼
:END()
:ELSE()
:tag('td')
:addClass('table-na')
▲ :wikitext(item.xpPerHourDropping and lang:formatNum(tonumber(item.xpPerHourDropping)))
:wikitext('N/A')
:done()
▲ :ELSE()
▲ :node(plist.unknown_value_cell(1))
:END()
|