Module:Mazunki/Fletching

From Melvor Idle
Revision as of 18:13, 17 April 2022 by Mazunki (talk | contribs)

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'})
	
	--table.insert
end

function p._testing()
	-- return p._get_fletchingRatesTable(10, 70)
end

return p