Minecraft Wiki
Advertisement
[criar | histórico | purgar]Documentação
Este module não tem documentação. Se você souber como usar este module, por favor crie.
local sprite = require( [[Módulo:Sprite]] ).sprite
local ids = mw.loadData( [[Módulo:InvSprite]] ).ids
local p = {}

p.icon = function( f )
	local args = f
	if f == mw.getCurrentFrame() then
		args = f:getParent().args
	end
	
	local idData = ids[args[1]]
	local icon, category
	local link = args.link
	local title = args.title
	
	if idData then
		icon, category = sprite{
			iddata = idData, link = link, title = title,
			data = 'InvSprite'
		}
	else
		local file = args[1]
		if file:match( '\.gif$' ) or file:match( '\.png$' ) then
			file = 'Invicon ' .. file
		else
			file = 'Grid ' .. file .. '.png'
		end
		icon = '[[Arquivo:' .. file .. '|32x32px|link=' .. ( link or '' ) .. '|' .. ( title or '' ) .. ']]'
	end
	
	return icon .. ( category or '' )
end

return p
Advertisement