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 3: | Line 3: | ||
local Infobox = require('Module:Infobox') |
local Infobox = require('Module:Infobox') |
||
local parse = require('Module:Param Parse') |
local parse = require('Module:Param Parse') |
||
local function weapon_strength(passive, profession_a, unlock_level) |
|||
unlock_level = parse.unlock_level_smw(profession_a, unlock_level) |
|||
passive = parse.yes_no_smw(passive) |
|||
-- Only passive enemies have weapon strength requirements |
|||
if unlock_level == nil or not passive then |
|||
return nil |
|||
⚫ | |||
-- Weapon strength requirement is always 20 higher than unlock level |
|||
return unlock_level + 20 |
|||
end |
|||
function p.main(frame) |
function p.main(frame) |
||
local args = frame:getParent().args |
local args = frame:getParent().args |
||
⚫ | |||
local config = { |
local config = { |
||
infobox_name = 'Monster', |
infobox_name = 'Monster', |
||
class = {Infobox.smw_param('episode')}, |
class = {Infobox.smw_param('episode')}, |
||
} |
} |
||
local params = { |
local params = { |
||
parse. |
parse.name, |
||
parse.image_size300, |
parse.image_size300, |
||
parse.release, |
parse.release, |
||
parse.premium, |
parse.premium, |
||
parse.episode, |
parse.episode, |
||
parse.quest, |
|||
parse.unlock_level, |
parse.unlock_level, |
||
parse.health, |
parse.health, |
||
Line 39: | Line 27: | ||
parse.passive, |
parse.passive, |
||
parse.knowledge, |
parse.knowledge, |
||
⚫ | |||
name = 'weapon_strength', |
|||
func = { name = weapon_strength, params = { Infobox.raw_param('passive'), Infobox.raw_param('profession_a'), Infobox.raw_param('unlock_level') } } |
|||
⚫ | |||
parse.aggressive, |
parse.aggressive, |
||
parse.description, |
parse.description, |
||
Line 48: | Line 32: | ||
parse.profession_bubble_b, |
parse.profession_bubble_b, |
||
-- Include these next params just to export data to smw |
-- Include these next params just to export data to smw |
||
parse.variant_name, |
|||
parse.profession_a_smw, |
parse.profession_a_smw, |
||
parse.profession_a_level_smw, |
parse.profession_a_level_smw, |
||
Line 71: | Line 54: | ||
{tag='td', content=Infobox.param('episode'), colspan="13"}, |
{tag='td', content=Infobox.param('episode'), colspan="13"}, |
||
} |
} |
||
if infobox:is_param_defined(Infobox.param('quest')) ~= 0 and infobox:get_param(Infobox.param('quest'), 0) ~= 'No' then |
|||
⚫ | |||
⚫ | |||
⚫ | |||
} |
|||
end |
|||
⚫ | |||
:add_row{ |
:add_row{ |
||
{tag='th', content='[[Premium Pass|Premium]]', colspan="7"}, |
{tag='th', content='[[Premium Pass|Premium]]', colspan="7"}, |
||
Line 108: | Line 82: | ||
} |
} |
||
end |
end |
||
if infobox: |
if infobox:is_param_defined(Infobox.param('vulnerable_to')) > 0 then |
||
⚫ | |||
if infobox:is_param_defined(Infobox.param('vulnerable_to')) > 0 then |
|||
⚫ | |||
⚫ | |||
{tag='td', content=Infobox.param('vulnerable_to'), colspan="13"}, |
|||
⚫ | |||
{tag='td', content=Infobox.param('vulnerable_to'), colspan="13"}, |
|||
} |
|||
end |
|||
end |
end |
||
if infobox:is_param_defined(Infobox.param('variant')) > 0 and infobox:get_param(Infobox.param('variant'), 0) ~= 'N/A' then |
if infobox:is_param_defined(Infobox.param('variant')) > 0 and infobox:get_param(Infobox.param('variant'), 0) ~= 'N/A' then |
||
Line 123: | Line 95: | ||
end |
end |
||
infobox:add_row{ |
infobox:add_row{ |
||
{tag='th', content='[[File:Passive |
{tag='th', content='[[File:Passive activity icon.png|14px|link=Passive activity]] [[Passive activity|Passive]]', colspan="7"}, |
||
{tag='td', content=Infobox.param('passive'), colspan="13"}, |
{tag='td', content=Infobox.param('passive'), colspan="13"}, |
||
} |
} |
||
Line 131: | Line 103: | ||
{tag='td', content=Infobox.param('knowledge'), colspan="13"}, |
{tag='td', content=Infobox.param('knowledge'), colspan="13"}, |
||
} |
} |
||
⚫ | |||
infobox:add_row{ |
|||
⚫ | |||
{tag='th', content='Weapon Strength', colspan="7"}, |
|||
{tag='td', content=Infobox.param('weapon_strength'), colspan="13"}, |
|||
} |
|||
else |
|||
infobox:add_row{ |
|||
{tag='th', content='[[File:Aggressive activity icon.png|3px|link=Aggressive]] [[Aggressive]]', colspan="7"}, |
{tag='th', content='[[File:Aggressive activity icon.png|3px|link=Aggressive]] [[Aggressive]]', colspan="7"}, |
||
{tag='td', content=Infobox.param('aggressive'), colspan="13"}, |
{tag='td', content=Infobox.param('aggressive'), colspan="13"}, |
||
} |
} |
||
⚫ | |||
end |
|||
⚫ | |||
infobox:add_row{ |
|||
{tag=' |
{tag='td', content=Infobox.param('description'), colspan="13"} |
||
⚫ | |||
{tag='td', content=Infobox.param('description'), colspan="13"} |
|||
⚫ | |||
local bubble_a = infobox:is_param_defined(Infobox.param('profession_bubble_a')) > 0 |
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 |
local bubble_b = infobox:is_param_defined(Infobox.param('profession_bubble_b')) > 0 |