Module:Infobox Monster: Difference between revisions

Jump to navigation Jump to search
Content added Content deleted
(whoops this needs to be a greater than 0 check)
No edit summary
 
Line 18: Line 18:
parse.premium,
parse.premium,
parse.episode,
parse.episode,
{name = 'level', func = parse.number}, -- TODO - same as below
{name = 'hp', func = parse.number}, -- TODO - move to Module:Param Parse once more details are available, and create smw_property
{name = 'hp', func = parse.number}, -- TODO - move to Module:Param Parse once more details are available, and create smw_property
{name = 'xp', func = parse.number}, -- TODO - same as above
{name = 'xp', func = parse.number}, -- TODO - same as above
Line 24: Line 23:
parse.passive,
parse.passive,
parse.examine,
parse.examine,
parse.profession_bubble_a,
parse.profession_bubble_b,
}
}
Line 45: Line 46:
{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='[[Level]]', colspan="6"},
{tag='td', content=Infobox.param('level'), colspan="14"}
}
}
:add_row{
:add_row{
Line 72: Line 69:
{tag='td', content=Infobox.param('examine'), colspan="14"}
{tag='td', content=Infobox.param('examine'), colspan="14"}
}
}
local bubble_a = infobox:is_param_defined(Infobox.param('profession_bubble_a')) > 0
:pad(20)
local bubble_b = infobox:is_param_defined(Infobox.param('profession_bubble_b')) > 0
if bubble_a and bubble_b then
infobox:add_row{
{tag='td', content=Infobox.param('profession_bubble_a'), class='infobox-bubble-item', colspan="10"},
{tag='td', content=Infobox.param('profession_bubble_b'), class='infobox-bubble-item', colspan="10"},
addClass = 'infobox-bubble-row'
}
elseif bubble_a then
infobox:add_row{
{tag='td', content=Infobox.param('profession_bubble_a'), class='infobox-bubble-item', colspan="20"},
addClass = 'infobox-bubble-row'
}
elseif bubble_b then
infobox:add_row{
{tag='td', content=Infobox.param('profession_bubble_b'), class='infobox-bubble-item', colspan="20"},
addClass = 'infobox-bubble-row'
}
else
infobox:pad('20')
end
return infobox
return infobox