Editing Module:Infobox Monster
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
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 23: | Line 24: | ||
parse.passive, |
parse.passive, |
||
parse.examine, |
parse.examine, |
||
parse.profession_bubble_a, |
|||
parse.profession_bubble_b, |
|||
} |
} |
||
Line 46: | Line 45: | ||
{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"}, |
||
⚫ | |||
⚫ | |||
{tag='th', content='[[Level]]', colspan="6"}, |
|||
⚫ | |||
} |
} |
||
:add_row{ |
:add_row{ |
||
Line 69: | Line 72: | ||
{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 |
|||
local bubble_b = infobox:is_param_defined(Infobox.param('profession_bubble_b')) > 0 |
|||
if bubble_a and bubble_b then |
|||
⚫ | |||
⚫ | |||
{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 |
|||
⚫ | |||
end |
|||
return infobox |
return infobox |