Module:Mazunki/Fletching: Difference between revisions
From Melvor Idle
mNo edit summary |
mNo edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 12: | Line 12: | ||
end | end | ||
function p. | function p.getFletchingBestExperienceTable(frame) | ||
-- local fletches = {} | -- local fletches = {} | ||
-- table.insert(fletches, '{| class="wikitable sortable stickyHeader"\r\n|- class="headerRow-0"') | -- table.insert(fletches, '{| class="wikitable sortable stickyHeader"\r\n|- class="headerRow-0"') | ||
return skillartisan._getRecipeTable('Fletching', '', {'Item', 'SkillLevel', 'SkillXP', 'SkillXPSec'}) | return skillartisan._getRecipeTable('Fletching', '', {'Item', 'SkillLevel', 'SkillXP', 'SkillXPSec', 'GP', 'GPSec'}) | ||
--table.insert | --table.insert |
Latest revision as of 18:13, 17 April 2022
Documentation for this module may be created at Module:Mazunki/Fletching/doc
local SkillData = mw.loadData('Module:Skills/data')
local Shared = require('Module:Shared')
local Items = require('Module:Items')
local Icons = require('Module:Icons')
local skillartisan = require("Module:Skills/Artisan")
local p = {}
function p._getTimeToCollectMaterials(itemid)
return 1.0
end
function p.getFletchingBestExperienceTable(frame)
-- local fletches = {}
-- table.insert(fletches, '{| class="wikitable sortable stickyHeader"\r\n|- class="headerRow-0"')
return skillartisan._getRecipeTable('Fletching', '', {'Item', 'SkillLevel', 'SkillXP', 'SkillXPSec', 'GP', 'GPSec'})
--table.insert
end
function p._testing()
-- return p._get_fletchingRatesTable(10, 70)
end
return p