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

Z Minecraft Wiki Polska
Przejdź do nawigacji Przejdź do wyszukiwania
[wersja nieprzejrzana][wersja przejrzana]
Nie podano opisu zmian
w przeciwnym razie słowa zaczynające się od liter unikalnych dla polskiego z angielskiego nie będą działać
 
Linia 1: Linia 1:
local p = {}
local p = {}
local polish = mw.language.new('pl')


function p.value( f )
function p.value( f )
Linia 6: Linia 7:
args = require( 'Module:ProcessArgs' ).merge( true )
args = require( 'Module:ProcessArgs' ).merge( true )
end
end
local block = mw.text.trim( args[1] or '' ):lower()
local block = polish:lc(mw.text.trim( args[1] or '' ))
local argType = args.type
local argType = args.type
Linia 19: Linia 20:
local title = mw.title.getCurrentTitle()
local title = mw.title.getCurrentTitle()
if not args.nocat and title.namespace == 0 and not title.isSubpage then
if not args.nocat and title.namespace == 0 and not title.isSubpage then
category = '[[Category:Brakujące ' .. argType:lower() .. ']]'
category = '[[Category:Brakujące ' .. polish:lc(argType) .. ']]'
end
end
end
end

Aktualna wersja na dzień 00:47, 21 lip 2025

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

Zależności

local p = {}
local polish = mw.language.new('pl')

function p.value( f )
	local args = f
	if f == mw.getCurrentFrame() then 
		args = require( 'Module:ProcessArgs' ).merge( true )
	end
	local block = polish:lc(mw.text.trim( args[1] or '' ))
	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 ' .. polish:lc(argType) .. ']]'
			end
		end
	end
	return value .. category
end

return p