Editing Module:Infobox Skill Node
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, |
||
parse.profession, |
|||
{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, |
|||
-- Include these next params just to export data to smw |
|||
parse.profession_a_smw, |
|||
parse.profession_a_level_smw, |
|||
parse.profession_b_smw, |
|||
parse.profession_b_level_smw, |
|||
} |
} |
||
Line 50: | Line 45: | ||
{tag='td', content=Infobox.param('premium'), colspan="14"}, |
{tag='td', content=Infobox.param('premium'), colspan="14"}, |
||
} |
} |
||
⚫ | |||
if infobox:is_param_defined(Infobox.param('variant')) > 0 then |
|||
{tag='th', content='[[Level]]', colspan="6"}, |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
{tag='th', content='[[Profession]]', colspan="6"}, |
|||
⚫ | |||
⚫ | |||
⚫ | |||
{tag='th', content='[[Variant]] of', colspan="6"}, |
{tag='th', content='[[Variant]] of', colspan="6"}, |
||
{tag='td', content=Infobox.param('variant'), colspan="14"}, |
{tag='td', content=Infobox.param('variant'), colspan="14"}, |
||
} |
} |
||
⚫ | |||
end |
|||
infobox:add_row{ |
|||
{tag='th', content='[[File:Passive activity icon.png|14px|link=Passive activity]] [[Passive activity|Passive]]', colspan="6"}, |
{tag='th', content='[[File:Passive activity icon.png|14px|link=Passive activity]] [[Passive activity|Passive]]', colspan="6"}, |
||
{tag='td', content=Infobox.param('passive'), colspan="14"}, |
{tag='td', content=Infobox.param('passive'), colspan="14"}, |
||
Line 64: | Line 65: | ||
{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 |
|||
⚫ | |||
{tag='td', content=Infobox.param('profession_bubble_b'), class='infobox-bubble-item', colspan="20"}, |
|||
addClass = 'infobox-bubble-row' |
|||
} |
|||
else |
|||
⚫ | |||
end |
|||
return infobox |
return infobox |