Module:GathererList: Difference between revisions
move from calculating actions per hour to specifying actions per hour, so people can import values from strategy guides
m (femur bank time) |
(move from calculating actions per hour to specifying actions per hour, so people can import values from strategy guides) |
||
Line 40:
-- downtime is very important for gathering-type professions
-- initial values, it will be obvious if these get used
item.
item.
-- these numbers are
if string.find(item.pageName,'Globeplant') then
item.
item.
elseif string.find(item.pageName,'Dandelion') then
item.
item.
elseif string.find(item.pageName,'Goat Horn') then
item.
item.
elseif string.find(item.pageName,'Apple') then
item.
item.
elseif string.find(item.pageName,'Leek') then
item.
item.
elseif string.find(item.pageName,'Haleberries') then
item.productPerHour = 357
item.
elseif string.find(item.pageName,'Rams Horn') then
item.
item.
elseif string.find(item.pageName,'Bitterfruit') then
item.productPerHour = 245
item.
elseif string.find(item.pageName,'Chestnut') then
item.
item.
elseif string.find(item.pageName,'Bone Spike') then
item.
item.
elseif string.find(item.pageName,'Tangfruit') then
item.productPerHour = 212
item.
elseif string.find(item.pageName,'Catkin') then
item.
item.
elseif string.find(item.pageName,'Femur Shard') then
item.
item.
elseif string.find(item.pageName,'Clover') then
item.
item.
elseif string.find(item.pageName,'Snake Scale') then
item.
item.
elseif string.find(item.pageName,'Orchid') then
item.
item.
elseif string.find(item.pageName,'Dock Leaf') then
item.productPerHour = nil
item.
elseif string.find(item.pageName,'Sage') then
item.productPerHour = nil
item.
elseif string.find(item.pageName,'Thistle') then
item.
item.
end
-- profitability
item.profit = item.sellPrice
-- properties per hour
|