Module:Infobox Skill Node: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
m (BlackHawk moved page Module:Infobox skill node to Module:Infobox Skill Node without leaving a redirect) |
No edit summary |
||
Line 18: | Line 18: | ||
parse.premium, |
parse.premium, |
||
parse.episode, |
parse.episode, |
||
parse.profession, |
|||
{name = 'level', func = parse.number}, -- TODO - move to Module:Param Parse once more details are available, and create smw_property |
{name = 'level', func = parse.number}, -- TODO - move to Module:Param Parse once more details are available, and create smw_property |
||
parse.variant, |
parse.variant, |
||
parse.passive, |
parse.passive, |
||
parse.examine, |
parse.examine, |
||
parse.profession_bubble_a, |
|||
parse.profession_bubble_b, |
|||
} |
} |
||
Line 44: | 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"}, |
|||
⚫ | |||
⚫ | |||
⚫ | |||
{tag='th', content='[[Profession]]', colspan="6"}, |
|||
⚫ | |||
} |
} |
||
:add_row{ |
:add_row{ |
||
Line 65: | Line 58: | ||
{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 |
|||
⚫ | |||
⚫ | |||
⚫ | |||
addClass = 'infobox-bubble-row' |
|||
⚫ | |||
elseif bubble_a then |
|||
⚫ | |||
{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 |