Module:AlchemistList: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
m (remove display option for non-recipes that doesnt apply to alchemist active table) |
m (special case for 10% healing potions being made in batches of 24 not 12) |
||
Line 50: | Line 50: | ||
-- 40 seconds to buy new supplies and travel and deposit and everything, per 12 potions |
-- 40 seconds to buy new supplies and travel and deposit and everything, per 12 potions |
||
local batchSize = 12 |
local batchSize = 12 |
||
if item.product=='10% Potion Healing' then |
|||
batchSize = 24 |
|||
end |
|||
local downtime = 40 |
local downtime = 40 |
||
item.duration = item.duration and item.duration + downtime/batchSize |
item.duration = item.duration and item.duration + downtime/batchSize |