View source for Module:SkillUnlocks
From Melvor Idle
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
--This module polls various game data sources to produce a full list of skill
--level unlocks for each skill. The game has a hard-coded set of "milestones"
--for each skill that does the same thing, but it is not exhaustive and not
--permanently visible for most combat skills.
local Shared = require('Module:Shared')
local Icons = require('Module:Icons')
local Items = require('Module:Items')
function p._getAllItemsWithSkillRequirement(skillReqLabel)
local itemList = Items.getItems(function(item)
-- Exclude Golbin Raid exclusives
if item.golbinRaidExclusive ~= nil and item.golbinRaidExclusive then
return false
end
return Items._getItemStat(item, skillReqLabel) ~= nil
end)
000
1:0
Template used on this page:
Return to Module:SkillUnlocks.