Editing Module:Infobox Monster

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

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
end
-- 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.name_with_variant_category,
parse.name_with_variant_category,
Line 39: Line 28:
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 100: Line 85:
{tag='th', content='[[Attack Style]]', colspan="7"},
{tag='th', content='[[Attack Style]]', colspan="7"},
{tag='td', content=Infobox.param('attack_style'), colspan="13"},
{tag='td', content=Infobox.param('attack_style'), colspan="13"},
}
end
if infobox:is_param_defined(Infobox.param('immune_to')) > 0 then
infobox:add_row{
{tag='th', content='Immune to', colspan="7"},
{tag='td', content=Infobox.param('immune_to'), colspan="13"},
}
}
end
end
if infobox:get_param(Infobox.param('passive'), 0) == 'No' then
if infobox:get_param(Infobox.param('passive'), 0) == 'No' then
if infobox:is_param_defined(Infobox.param('immune_to')) > 0 then
infobox:add_row{
{tag='th', content='Immune to', colspan="7"},
{tag='td', content=Infobox.param('immune_to'), colspan="13"},
}
end
if infobox:is_param_defined(Infobox.param('vulnerable_to')) > 0 then
if infobox:is_param_defined(Infobox.param('vulnerable_to')) > 0 then
infobox:add_row{
infobox:add_row{
Line 123: Line 108:
end
end
infobox:add_row{
infobox:add_row{
{tag='th', content='[[File:Passive small icon.png|14px|link=Passive activity]] [[Passive activity|Passive]]', colspan="7"},
{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 130: Line 115:
{tag='th', content='[[File:Knowledge_icon.png|link=Knowledge|width=18x18]] [[Knowledge]]', colspan="7"},
{tag='th', content='[[File:Knowledge_icon.png|link=Knowledge|width=18x18]] [[Knowledge]]', colspan="7"},
{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
else
Please note that all contributions to Brighter Shores Wiki are considered to be released under the CC BY-NC-SA 3.0 (see Brighter Shores:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)
Preview page with this template

This page is a member of a hidden category: