View source for Module:Skills/Gathering
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.
--Splitting some functions into here to avoid bloating a single file
local p = {}
local SkillData = mw.loadData('Module:Skills/data')
local ShopData = mw.loadData('Module:Shop/data')
local Constants = require('Module:Constants')
local Shared = require('Module:Shared')
local Items = require('Module:Items')
local Icons = require('Module:Icons')
function p.getAxeTable(frame)
local toolArray = {}
for i, upgrade in Shared.skpairs(ShopData.Shop.SkillUpgrades) do
if Shared.contains(upgrade.name, 'Axe') then
table.insert(toolArray, upgrade)
end
end
local result = '{| class="wikitable"'
000
1:0
Template used on this page:
Return to Module:Skills/Gathering.