Module:Infobox NPC: Difference between revisions

From Brighter Shores Wiki
Jump to navigation Jump to search
Content added Content deleted
(Changing from examine to description; there is no examining in this game. Still supports giving the param as "examine", though.)
(Adding actions.)
 
Line 13: Line 13:
local params = {
local params = {
parse.actions,
parse.name,
parse.name,
parse.image,
parse.image,
Line 48: Line 49:
}
}
end
end
infobox:add_row{
{tag='th', content='Actions', colspan="6"},
{tag='td', content=Infobox.param('actions'), colspan="14"}
}
infobox:add_row{
infobox:add_row{
{tag='th', content='Description', colspan="6"},
{tag='th', content='Description', colspan="6"},

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