Editing Module:Infobox Item
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 9: | Line 9: | ||
local config = { |
local config = { |
||
infobox_name = 'Item', |
infobox_name = 'Item', |
||
class = {Infobox.smw_param('episode'), Infobox.param('rarity_from_name')}, |
|||
} |
} |
||
local params = { |
local params = { |
||
parse.actions, |
|||
parse.name, |
parse.name, |
||
parse.rarity_from_name, |
|||
parse.image, |
parse.image, |
||
parse.release, |
parse.release, |
||
parse.premium, |
parse.premium, |
||
parse.episode, |
parse.episode, |
||
{name = 'profession', func = parse.has_content, category_incomplete = 'Items needing profession', smw_property = 'Profession'}, -- TODO - move to Module:Param Parse once more details are available |
|||
parse.additional_episode, |
|||
{name = 'value', func = parse.number, category_incomplete = 'Items needing value', smw_property = 'Value'}, -- TODO - move to Module:Param Parse once more details are available |
|||
parse.quest, |
|||
parse.value, |
|||
parse.description, |
|||
parse.variant, |
|||
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 47: | Line 32: | ||
{tag='th', content='Release', colspan="6"}, |
{tag='th', content='Release', colspan="6"}, |
||
{tag='td', content=Infobox.param('release'), colspan="14"}, |
{tag='td', content=Infobox.param('release'), colspan="14"}, |
||
} |
|||
local additional_episode = infobox:is_param_defined(Infobox.param('additional_episode')) > 0 |
|||
if additional_episode then |
|||
⚫ | |||
⚫ | |||
⚫ | |||
} |
} |
||
:add_row{ |
:add_row{ |
||
{tag='td', content=Infobox.param('additional_episode'), colspan="14"}, |
|||
} |
|||
local additional_episode_class = 'infobox-'..infobox:get_param(Infobox.smw_param('additional_episode'), 0)..'-additional' |
|||
additional_episode_class = mw.ustring.gsub(additional_episode_class, '%s', '_') |
|||
infobox:addClass(additional_episode_class) |
|||
else |
|||
⚫ | |||
{tag='th', content='[[Episode]]', colspan="6"}, |
{tag='th', content='[[Episode]]', colspan="6"}, |
||
{tag='td', content=Infobox.param('episode'), colspan="14"}, |
{tag='td', content=Infobox.param('episode'), colspan="14"}, |
||
} |
} |
||
⚫ | |||
end |
|||
⚫ | |||
{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"}, |
||
} |
} |
||
⚫ | |||
if infobox:is_param_defined(Infobox.param('quest')) == 0 or infobox:get_param(Infobox.param('quest'), 0) == 'No' then |
|||
⚫ | |||
infobox:add_row{ |
|||
{tag='td', content=Infobox.param('profession'), colspan="14"}, |
|||
{tag='td', content=Infobox.param('value'), colspan="14"}, |
|||
} |
|||
else |
|||
infobox:add_row{ |
|||
{tag='th', content='Quest', colspan="6"}, |
|||
{tag='td', content=Infobox.param('quest'), colspan="14"} |
|||
} |
|||
infobox:addClass('infobox-questitem') |
|||
end |
|||
if infobox:is_param_defined(Infobox.param('actions')) > 0 then |
|||
infobox:add_row{ |
|||
{tag='th', content='Actions', colspan="6"}, |
|||
{tag='td', content=Infobox.param('actions'), colspan="14"} |
|||
} |
} |
||
⚫ | |||
end |
|||
⚫ | |||
infobox:add_row{ |
|||
{tag=' |
{tag='td', content=Infobox.param('value'), colspan="14"}, |
||
{tag='td', content=Infobox.param('description'), colspan="14"} |
|||
} |
|||
if infobox:is_param_defined(Infobox.param('variant')) > 0 and infobox:get_param(Infobox.param('variant'), 0) ~= 'N/A' then |
|||
infobox:add_row{ |
|||
{tag='th', content='[[Variant]] of', colspan="6"}, |
|||
{tag='td', content=Infobox.param('variant'), colspan="14"}, |
|||
} |
|||
end |
|||
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 |