Module:Sandbox/User:B4rt0/Modules/Infobox Spell: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
No edit summary Tag: Manual revert |
No edit summary |
||
Line 19: | Line 19: | ||
parse.premium, |
parse.premium, |
||
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_a_level_high_smw, |
|||
parse.profession_b_smw, |
|||
parse.profession_b_level_smw, |
|||
parse.profession_b_level_high_smw, |
|||
} |
} |
||
Line 45: | Line 54: | ||
{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 |
|||
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 |
|||
⚫ | |||
end |
|||
return infobox |
return infobox |