Minecraft Wiki
Advertisement
このモジュールには解説がありません。もしあなたがこのモジュールを使用する方法を知っている場合は、解説ページを作成してください。
local sprite = require( [[モジュール:Sprite]] ).sprite
local ids = mw.loadData( [[モジュール: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 = '[[ファイル:' .. file .. '|32x32px|link=' .. ( link or '' ) .. '|' .. ( title or '' ) .. ']]'
	end
	
	return icon .. ( category or '' )
end

return p
Advertisement