Module:Infobox Monster: Difference between revisions
no edit summary
InvalidCards (talk | contribs) (whoops this needs to be a greater than 0 check) |
No edit summary |
||
Line 18:
parse.premium,
parse.episode,
{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
Line 24 ⟶ 23:
parse.passive,
parse.examine,
parse.profession_bubble_a,
parse.profession_bubble_b,
}
Line 45 ⟶ 46:
{tag='th', content='[[Premium Pass|Premium]]', colspan="6"},
{tag='td', content=Infobox.param('premium'), colspan="14"},
}▼
:add_row{▼
{tag='td', content=Infobox.param('level'), colspan="14"}▼
}
:add_row{
Line 72 ⟶ 69:
{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('
{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
|