Module:FisherList: Difference between revisions
change from calculating fish per hour to specifying fish per hour, so that people can write strategy guides and then import the numbers
m (cod bank time) |
(change from calculating fish per hour to specifying fish per hour, so that people can write strategy guides and then import the numbers) |
||
Line 39:
-- downtime is very important for gathering-type professions
-- initial
item.
item.productPerHourDropping = 1
-- these numbers from the strategy guides for each type of node
if string.find(item.pageName,'Flounder') then
item.productPerHour = 317
item.
elseif string.find(item.pageName,'Eel') then
item.
item.
elseif string.find(item.pageName,'Pufferfish') then
item.productPerHour = 407
item.
elseif string.find(item.pageName,'Gurnard') then
item.
item.
elseif string.find(item.pageName,'Bass') then
item.
item.
elseif string.find(item.pageName,'Ray') then
item.
item.
elseif string.find(item.pageName,'Cod') then
item.
item.
end
-- profitability
item.profit = item.sellPrice
-- properties per hour
|