Minecraft Wiki
편집 요약 없음
편집 요약 없음
34번째 줄: 34번째 줄:
 
local category = ''
 
local category = ''
 
if not value then
 
if not value then
value = '[[Template:' .. type .. ' 값#값이 없음|?]]'
+
value = '[[:' .. type .. ' 값#값이 없음|?]]'
 
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

2015년 2월 24일 (화) 00:08 판

[만들기 | 역사 | 캐시 제거]설명문서
이 모듈의 설명문서가 없습니다. 이 모듈의 사용 방법을 안다면, 설명문서를 만들어 주십시오.
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
	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 category = ''
	if not value then
		value = '[[틀:' .. type .. ' 값#값이 없음|?]]'
		local title = mw.title.getCurrentTitle()
		if not args.nocat and title.namespace == 0 and not title.isSubpage then
			category = '[[분류:' .. type:lower() .. ' 값이 없음]]'
		end
	end
	return value .. category
end
return p