Minecraft Wiki
Advertisement

La documentazione per questo modulo può essere creata in Modulo:Block value/doc

local p = {}
p.value = function( f )
	local args = f
	if f == mw.getCurrentFrame() then 
		args = require( 'Module:ProcessArgs' ).merge( true )
	end
	local block = mw.text.trim( args[1] or '' ):lower()
	local type = args.type

	-- Most of these transforms are unnecessary, but are kept for compatibility with original template

	-- Strip trailing "s" on everything but these
	if type=="blast resistance" then
		block=block:gsub( "['%(%)%-%s]+", '' )
	else
	local keepS = {
		glass = true,
		steps = true, stairs = true,
		bars = true,
		cactus = true,
		leaves = true,
		grass = true,
		potatoes = true,
		planks = true,
		seagrass = true
	}
	if not keepS[block:match( '%w+$' )] then
		block = block:gsub( 's$', '' )
	end
	
	-- Other transforms
	block = block
		:gsub( 'wooden', 'wood' )
		:gsub( 'mossy', 'moss' )
		:gsub( 'steps', 'stairs' )
		:gsub( "['%(%)%-%s]+", '' )
	end
	local value = mw.loadData( 'Modulo:' .. type .. ' values' )[block]
	local category = ''
	if not value then
		value = '[[Template:Valori ' .. type .. '#Valore mancante|?]]'
		local title = mw.title.getCurrentTitle()
		if not args.nocat and title.namespace == 0 and not title.isSubpage then
			category = '[[Categoria:' .. type .. ' mancante]]'
		end
	end
	return value .. category
end
return p
Advertisement