Module:Inventory icon: Difference between revisions

From Parallel Wiki
Jump to navigation Jump to search
(deprecate InvSprite - Operation Sprite Ender)
 
m (1 revision imported: Imported from minecraft.wiki)
(No difference)

Revision as of 06:37, 31 October 2023

This is the documentation page. It will be transcluded into the main module page. See Template:Documentation for more information

This code has been modified from its original version to provide better support for Inventory icons with custom namespaces.

Usage

Used by {{Inventory icon}}.

fr:Module:Icône inventaire it:Modulo:Inventory icon


local p = {}

p.icon = function( f )
	local args = f
	if f == mw.getCurrentFrame() then
		args = f:getParent().args
	end
	
	local file = args[1]
	local link = args.link
	local title = args.title
	
	if file:match( '%.gif$' ) or file:match( '%.png$' ) then
		file = 'Invicon ' .. file
	else
		file = 'Invicon ' .. file .. '.png'
	end
	return '[[File:' .. file .. '|32x32px|link=' .. ( link or '' ) .. '|' .. ( title or '' ) .. '|class=pixel-image]]'
end

return p