Module:IconUtils

From Eco - English Wiki
Revision as of 08:49, 14 June 2024 by StalEF (talk | contribs)

Documentation for this module may be created at Module:IconUtils/doc

local p = {}

function p.main(param)
local Utils = require('Module:Utils')
local itemData = mw.loadData("Module:ItemData")
local Icon = ''

    local args = Utils.normaliseArgs(param)
    if args.name == nil or args.name == '' then
        return '\'name\' must be specified.'
    end
    local itemTable = itemData.items[args.name]
    if itemTable == nil then
        return args.name .. ' could not be found '
    end

return Icon
end

return p