Module:Param Parse: Difference between revisions

1,134 bytes added ,  Tuesday at 19:49
m
Fix pcall
(Add params for Module:Infobox Monster)
m (Fix pcall)
(12 intermediate revisions by 4 users not shown)
Line 3:
--]=]
-- <nowiki>
require('strict')
local Infobox = require('Module:Infobox')
local currency = require('Module:Currency').parse
Line 34 ⟶ 35:
return nil
end
local num = parse.number(out)
if num == nil then
return nil
Line 110 ⟶ 111:
-- Premade Params --
--------------------
 
-- Standardized examineactions function
parse.examineactions = {
name = 'examineactions',
func = parse.has_content,
}
 
-- Standardized name function
Line 131 ⟶ 138:
func = {name = parse.get_rarity_func, params = {Infobox.raw_param('name')}}
}
 
-- Standardized examine function
-- Standardized description function
parse.examine = {
function parse.description_func(description, examine)
name = 'examine',
if not description and examine then
func = parse.has_content,
description = examine
smw_property = 'Examine',
end
category_incomplete = 'Needs examine',
return parse.has_content(description)
end
parse.description = {
name = 'description',
func = {name = parse.description_func, params = {Infobox.raw_param('description'), Infobox.raw_param('examine')}},
smw_property = 'Description',
category_incomplete = 'Needs examinedescription',
}
 
Line 265 ⟶ 279:
 
-- Release
local function unix_time(date)
-- Convert a time to unix time
if date == nil then
Line 305 ⟶ 319:
-- Value
function parse.value_func(val)
local status, val = pcall(currency, val)
return currency(val)
if status then
return currency(val)
end
end
parse.value = {
Line 463 ⟶ 480:
smw_func = parse.difficulty_smw,
category_incomplete = 'Needs difficulty'
}
 
local valid_quest_types = {
['main'] = 'Main',
['side'] = 'Side'
}
function parse.quest_type_func(type)
local valid_type = valid_quest_types[string.lower(type or '')]
if valid_type then
return valid_type
else
return 'None'
end
return nil
end
function parse.quest_type_smw(type)
local valid_type = valid_quest_types[string.lower(type or '')]
if valid_type then
return valid_type
end
return nil
end
 
-- Quest type
parse.quest_type = {
name = 'quest_type',
func = parse.quest_type_func,
smw_property = 'Examinequest_type',
smw_func = parse.quest_type_smw,
category_incomplete = 'Needs quest_type'
}
 
Line 485 ⟶ 532:
local level_valid = parse.number(level)
local profession_valid = parse.has_content(profession)
local profession_valid_link = profession_valid
if not profession_valid and not level_valid then
Line 501 ⟶ 549:
end
return '[[File:'..profession_valid..'_icon.png|link='..profession_validprofession_valid_link..'|width=18x18]] '..level_valid
end
 
Line 559 ⟶ 607:
}
 
local function attack_style_func(style)
local attack_style = valid_attack_styles[string.lower(style or '')]
if attack_style then
Line 571 ⟶ 619:
end
 
local function attack_style_smw(style)
local attack_style = valid_attack_styles[string.lower(style or '')]
if attack_style then
209

edits