Minecraft Wiki
(Página creada con «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....»)
 
User-100181356 (discusión | contribs.)
Sin resumen de edición
 
Línea 1: Línea 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
args = require( 'Module:ProcessArgs' ).merge( true )
+
args = require( 'Módulo:ProcessArgs' ).merge( true )
 
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
 
block = block
 
:gsub( 'wooden', 'wood' )
 
:gsub( 'mossy', 'moss' )
 
:gsub( 'steps', 'stairs' )
 
:gsub( "['%(%)%-%s]+", '' )
 
 
 
local value = mw.loadData( 'Module:' .. type .. ' values' )[block]
+
local values = mw.loadData( 'Módulo:' .. argType .. ' values' )
  +
local value = values[block]
 
local category = ''
 
local category = ''
 
if not value then
 
if not value then
value = '[[Template:' .. type .. ' values#Missing value|?]]'
+
value = values[block:gsub( 's$', '' )]
  +
local title = mw.title.getCurrentTitle()
 
  +
if not value then
if not args.nocat and title.namespace == 0 and not title.isSubpage then
 
category = '[[Category:Missing ' .. type:lower() .. ']]'
+
value = '[[Plantilla:' .. argType .. ' values#Missing value|?]]'
 
local title = mw.title.getCurrentTitle()
 
if not args.nocat and title.namespace == 0 and not title.isSubpage then
  +
category = '[[Category:Missing ' .. argType:lower() .. ']]'
 
end
 
end
 
end
 
end
 
end
 
return value .. category
 
return value .. category
 
end
 
end
  +
 
return p
 
return p

Revisión actual - 20:52 15 abr 2020

[Ver | Editar | Purgar]DocumentaciónVer código ↴

This module implements |Valores de dureza= and |Valores de resistencia a explosiones=.

Dependencies

[Ver | Editar | Purgar]La documentación arriba es transcluída desde 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:' .. argType .. ' values' )
	local value = values[block]
	local category = ''
	if not value then
		value = values[block:gsub( 's$', '' )]
		
		if not value then
			value = '[[Plantilla:' .. argType .. ' values#Missing value|?]]'
			local title = mw.title.getCurrentTitle()
			if not args.nocat and title.namespace == 0 and not title.isSubpage then
				category = '[[Category:Missing ' .. argType:lower() .. ']]'
			end
		end
	end
	return value .. category
end

return p