Module:Infobox NPC: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
No edit summary |
Thingummywut (talk | contribs) (Adding actions.) |
||
(11 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.name, |
parse.name, |
||
parse.image, |
parse.image, |
||
Line 17: | Line 19: | ||
parse.premium, |
parse.premium, |
||
parse.episode, |
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 |
{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, |
|||
} |
} |
||
Line 40: | 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"}, |
||
} |
|||
⚫ | |||
⚫ | |||
⚫ | |||
} |
} |
||
if infobox:is_param_defined(Infobox.param('shop')) > 0 then |
if infobox:is_param_defined(Infobox.param('shop')) > 0 then |
||
infobox:add_row{ |
infobox:add_row{ |
||
{tag=' |
{tag='th', content='[[Shop]]', colspan="6"}, |
||
{tag='td', content=Infobox.param('shop')}, |
{tag='td', content=Infobox.param('shop'), colspan="14"}, |
||
} |
} |
||
end |
end |
||
infobox: |
infobox:add_row{ |
||
⚫ | |||
⚫ | |||
} |
|||
⚫ | |||
{tag='th', content='Description', colspan="6"}, |
|||
{tag='td', content=Infobox.param('description'), colspan="14"} |
|||
} |
|||
: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