Module:IconUtils
From Eco - English Wiki
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
if args.size == nil or args.size == '' then IconSize = 28 else IconSize = args.size end
local ItemEN = itemTable.untranslated
local IconName = string.gsub(ItemEN, ' ', '') .. 'Item'
Icon = Utils.checkImage(IconName)
return '[[file:'.. Icon ..'|'.. IconSize ..'px|link=]]'
end
return p