Minecraft Wiki
Registre-se
Advertisement

Este módulo implementa {{valores de dureza}} e {{valores de resistência à explosão}}.

Dependências[]

[ver | editar | histórico | purgar]A documentação acima é transcluída de Módulo:Block value/doc.
local p = {}

function p.value( f )
	local args = f
	if f == mw.getCurrentFrame() then 
		args = require( 'Módulo:ProcessArgs' ).merge( true )
	end
	local block = mw.text.trim( args[1] or '' ):lower()
	local argType = args.type
	
	local values = mw.loadData( 'Módulo:Valores de ' .. argType .. '' )
	local value = values[block]
	local category = ''
	if not value then
		value = values[block:gsub( 's$', '' )]
		
		if not value then
			value = '[[Predefinição:Valores de ' .. argType .. '#Valor Ausente|?]]'
			local title = mw.title.getCurrentTitle()
			if not args.nocat and title.namespace == 0 and not title.isSubpage then
				category = '[[Categoria:' .. argType:lower() .. ' ausente]]'
			end
		end
	end
	return value .. category
end

return p
Advertisement