Editing Module:CarpenterPassiveList

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 58: Line 58:
function p.formatResults(results)
function p.formatResults(results)


-- iterate through products
-- iterate through potions
for _, item in ipairs(results) do
for _, item in ipairs(results) do
Line 67: Line 67:
-- some fields are easy to work out
-- some fields are easy to work out
item.outputQuantity = 1
item.outputQuantity = 1
item.materials = {}
item.reagents = {}
item.intermediates = {}
item.intermediates = {}
item.buy = 0
item.buy = 0
Line 82: Line 82:
local Materials = recipe._getTrueRawMaterials(unpackJSON.materials)
local Materials = recipe._getTrueRawMaterials(unpackJSON.materials)
if next(Materials) ~= nil then
if next(Materials) ~= nil then
item.materials = Materials.rawMaterials
item.reagents = Materials.rawMaterials
item.intermediates = Materials.intermediateMaterials
item.intermediates = Materials.intermediateMaterials
end
end
-- iterate through materials, adding buy price to running total (individuals not needed)
-- iterate through reagents, adding buy price to running total (individuals not needed)
item.buy = 0
item.buy = 0
for _, material in ipairs(item.materials) do
for _, reagent in ipairs(item.reagents) do
--shamelessley lifted from Module:Products
--shamelessley lifted from Module:Products
local shopPriceQuery = '[[:+]][[Sold item::' .. material.name .. ']]|?Shop buy price|mainlabel=' .. material.name
local shopPriceQuery = '[[:+]][[Sold item::' .. reagent.name .. ']]|?Shop buy price|mainlabel=' .. reagent.name
local shopPriceResult = mw.smw.ask(shopPriceQuery) or {}
local shopPriceResult = mw.smw.ask(shopPriceQuery) or {}
local shopPrice = 0
local shopPrice = 0
Line 101: Line 101:
end
end
item.buy = item.buy and item.buy + shopPrice * material.quantity
item.buy = item.buy and item.buy + shopPrice * reagent.quantity
end
end
Line 151: Line 151:
item.profitPerXP = item.profit and item.XP and math.floor(item.profit / item.XP * 100) / 100
item.profitPerXP = item.profit and item.XP and math.floor(item.profit / item.XP * 100) / 100


-- products made in 200 lots of 0.005, no downtime for passive activities
-- potions made in 200 lots of 0.005, no downtime for passive activities
local batchSize = 200
local batchSize = 200
local downtime = 0
local downtime = 0
item.duration = item.duration and item.duration + downtime/batchSize
item.duration = item.duration and item.duration + downtime/batchSize
item.productPerHour = item.duration and 1 / item.duration * 3600
item.potionPerHour = item.duration and 1 / item.duration * 3600


-- properties per hour
-- properties per hour
item.XPPerHour = item.XP and item.productPerHour and math.floor(item.XP * item.productPerHour)
item.XPPerHour = item.XP and item.potionPerHour and math.floor(item.XP * item.potionPerHour)
item.profitPerHour = item.profit and item.productPerHour and math.floor(item.profit * item.productPerHour)
item.profitPerHour = item.profit and item.potionPerHour and math.floor(item.profit * item.potionPerHour)
end
end


Line 175: Line 175:
:tag('th')
:tag('th')
:attr{ colspan = '3' }
:attr{ colspan = '3' }
:wikitext('Product')
:wikitext('Potion')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Materials')
:wikitext('Reagents')
:done()
:done()
:tag('th')
:tag('th')
Line 241: Line 241:
:IF(not(item.passiveActivity))
:IF(not(item.passiveActivity))


local materialCell = row:tag('td')
local reagentCell = row:tag('td')
for i, _ in ipairs(item.materials) do
for i, _ in ipairs(item.reagents) do
materialCell:wikitext(item.materials[i].quantity .. '&times; [[File:' .. item.materials[i].name .. '.png|18px|link=' .. item.materials[i].name .. ']]' .. '[[' .. item.materials[i].name .. ']]<br>')
reagentCell:wikitext(item.reagents[i].quantity .. '&times; [[File:' .. item.reagents[i].name .. '.png|18px|link=' .. item.reagents[i].name .. ']]' .. '[[' .. item.reagents[i].name .. ']]<br>')
end
end
Please note that all contributions to Brighter Shores Wiki are considered to be released under the CC BY-NC-SA 3.0 (see Brighter Shores:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)
Preview page with this template

This page is a member of a hidden category: