Moduł:Block value: Różnice pomiędzy wersjami

Z Minecraft Wiki Polska
Przejdź do nawigacji Przejdź do wyszukiwania
[wersja przejrzana][wersja nieprzejrzana]
Nie podano opisu zmian
Nie podano opisu zmian
Linia 1: Linia 1:
local p = {}
local p = {}
p.value = function( f )
 
function p.value( f )
local args = f
local args = f
if f == mw.getCurrentFrame() then  
if f == mw.getCurrentFrame() then  
Linia 6: Linia 7:
end
end
local block = mw.text.trim( args[1] or '' ):lower()
local block = mw.text.trim( args[1] or '' ):lower()
local type = args.type
local argType = args.type
 
-- Most of these transforms are unnecessary, but are kept for compatibility with original template
-- Strip trailing "s" on everything but these
local keepS = {
glass = true,
steps = true, stairs = true,
bars = true,
cactus = true,
leaves = true,
grass = true,
potatoes = true
}
if not keepS[block:match( '%w+$' )] then
block = block:gsub( 's$', '' )
end
-- Other transforms
local values = mw.loadData( 'Module:' .. argType .. ' values' )
block = block
local value = values[block]
:gsub( 'wooden', 'wood' )
:gsub( 'mossy', 'moss' )
:gsub( 'steps', 'stairs' )
:gsub( "['%(%)%-%s]+", '' )
local value = mw.loadData( 'Module:' .. type .. ' values' )[block]
local category = ''
local category = ''
if not value then
if not value then
value = '?'
value = values[block:gsub( 's$', '' )]
local title = mw.title.getCurrentTitle()
if not args.nocat and title.namespace == 0 and not title.isSubpage then
if not value then
category = '[[Category:Brakujące ' .. type:lower() .. ']]'
value = '?'
local title = mw.title.getCurrentTitle()
if not args.nocat and title.namespace == 0 and not title.isSubpage then
category = '[[Category:Brakujące ' .. argType:lower() .. ']]'
end
end
end
end
end
return value .. category
return value .. category
end
end
return p
return p

Wersja z 00:30, 21 lip 2025

Ten moduł implementuje {{Twardość}} i {{Odporność na eksplozję}}.

Zależności

local p = {}

function p.value( 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 argType = args.type
	
	local values = mw.loadData( 'Module:' .. argType .. ' values' )
	local value = values[block]
	local category = ''
	if not value then
		value = values[block:gsub( 's$', '' )]
		
		if not value then
			value = '?'
			local title = mw.title.getCurrentTitle()
			if not args.nocat and title.namespace == 0 and not title.isSubpage then
				category = '[[Category:Brakujące ' .. argType:lower() .. ']]'
			end
		end
	end
	return value .. category
end

return p