Module:IconUtils

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

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

local p = {}

function p.main(name,style,link,size,type)
local Utils = require('Module:Utils')
local itemData = mw.loadData("Module:ItemData")
local Icon = ''

    local itemTable = itemData.items[name]
    if itemTable == nil then
        return name .. ' could not be found '
    end

return Icon
end

return p