Module:Infobox NPC: Difference between revisions

From Brighter Shores Wiki
Jump to navigation Jump to search
Content added Content deleted
No edit summary
(Adding actions.)
 
(8 intermediate revisions by 5 users not shown)
Line 9: Line 9:
local config = {
local config = {
infobox_name = 'NPC',
infobox_name = 'NPC',
class = {Infobox.smw_param('episode')},
}
}
local params = {
local params = {
parse.actions,
parse.name,
parse.name,
parse.image,
parse.image,
Line 17: Line 19:
parse.premium,
parse.premium,
parse.episode,
parse.episode,
parse.profession,
{name = 'shop', func = parse.has_content, smw_property = 'Shop'}, -- TODO - move to Module:Param Parse once more details are available, and create property page
{name = 'shop', func = parse.has_content, smw_property = 'Shop'}, -- TODO - move to Module:Param Parse once more details are available, and create property page
parse.examine,
parse.description,
}
}
Line 41: Line 42:
{tag='th', content='[[Premium Pass|Premium]]', colspan="6"},
{tag='th', content='[[Premium Pass|Premium]]', colspan="6"},
{tag='td', content=Infobox.param('premium'), colspan="14"},
{tag='td', content=Infobox.param('premium'), colspan="14"},
}
:add_row{
{tag='th', content='[[Profession]]', colspan="6"},
{tag='td', content=Infobox.param('profession'), colspan="14"},
}
}
if infobox:is_param_defined(Infobox.param('shop')) > 0 then
if infobox:is_param_defined(Infobox.param('shop')) > 0 then
Line 53: Line 50:
end
end
infobox:add_row{
infobox:add_row{
{tag='th', content='Examine', colspan="6"},
{tag='th', content='Actions', colspan="6"},
{tag='td', content=Infobox.param('examine'), colspan="14"}
{tag='td', content=Infobox.param('actions'), colspan="14"}
}
infobox:add_row{
{tag='th', content='Description', colspan="6"},
{tag='td', content=Infobox.param('description'), colspan="14"}
}
}
infobox:pad(20)
:pad(20)
return infobox
return infobox

Latest revision as of 01:23, 18 November 2024

Module documentation
This documentation is transcluded from Module:Infobox NPC/doc. [edit] [history] [purge]
This module does not have any documentation. Please consider adding documentation at Module:Infobox NPC/doc. [edit]
Module:Infobox NPC's function main is invoked by Template:Infobox NPC.
Module:Infobox NPC requires Module:Infobox.
Module:Infobox NPC requires Module:Param Parse.

local p = {}

local Infobox = require('Module:Infobox')
local parse = require('Module:Param Parse')

function p.main(frame)
	local args = frame:getParent().args
	
	local config = {
		infobox_name = 'NPC',
		class = {Infobox.smw_param('episode')},
	}
	
	local params = {
		parse.actions,
		parse.name,
		parse.image,
		parse.release,
		parse.premium,
		parse.episode,
		{name = 'shop', func = parse.has_content, smw_property = 'Shop'}, -- TODO - move to Module:Param Parse once more details are available, and create property page
		parse.description,
	}
	
	local infobox = Infobox.new(config, params, args)
	infobox
		:add_row{
			{tag='th', content=Infobox.param('name'), class='infobox-header', colspan='20'},
		}
		:add_row{
			{tag='td', content=Infobox.param('image'), class='infobox-image', colspan='20'},
		}
		:add_row{
			{tag='th', content='Release', colspan="6"},
			{tag='td', content=Infobox.param('release'), colspan="14"},
		}
		:add_row{
			{tag='th', content='[[Episode]]', colspan="6"},
			{tag='td', content=Infobox.param('episode'), colspan="14"},
		}
		:add_row{
			{tag='th', content='[[Premium Pass|Premium]]', colspan="6"},
			{tag='td', content=Infobox.param('premium'), colspan="14"},
		}
	if infobox:is_param_defined(Infobox.param('shop')) > 0 then
		infobox:add_row{
			{tag='th', content='[[Shop]]', colspan="6"},
			{tag='td', content=Infobox.param('shop'), colspan="14"},
		}
	end
	infobox:add_row{
		{tag='th', content='Actions', colspan="6"},
		{tag='td', content=Infobox.param('actions'), colspan="14"}
	}
	infobox:add_row{
		{tag='th', content='Description', colspan="6"},
		{tag='td', content=Infobox.param('description'), colspan="14"}
	}
	:pad(20)
	
	return infobox
end

return p