Editing Module:Param Parse
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 140: | Line 140: | ||
-- Standardized description function |
-- Standardized description function |
||
function parse.description_func(description, examine) |
|||
if not description and examine then |
|||
description = examine |
|||
⚫ | |||
⚫ | |||
end |
|||
parse.description = { |
parse.description = { |
||
name = 'description', |
name = 'description', |
||
func = {name = parse.description_func, params = {Infobox.raw_param('description'), Infobox.raw_param('examine')}}, |
|||
⚫ | |||
smw_property = 'Description', |
smw_property = 'Description', |
||
category_incomplete = 'Needs description', |
category_incomplete = 'Needs description', |
||
Line 313: | Line 319: | ||
-- Value |
-- Value |
||
function parse.value_func(val) |
function parse.value_func(val) |
||
local |
local err, val = pcall(currency, val) |
||
if |
if not err then |
||
return val |
return val |
||
end |
end |
||
Line 400: | Line 406: | ||
func = {name = parse.number_or_number_range_high, params = {Infobox.raw_param('profession_b_level')}}, |
func = {name = parse.number_or_number_range_high, params = {Infobox.raw_param('profession_b_level')}}, |
||
smw_property = 'Profession Level B High', |
smw_property = 'Profession Level B High', |
||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
smw_property = 'Profession' -- TODO - Need to create property page |
|||
} |
} |
||
Line 415: | Line 428: | ||
smw_func = parse.yes_no_smw, |
smw_func = parse.yes_no_smw, |
||
category_incomplete = 'Needs passiveness' |
category_incomplete = 'Needs passiveness' |
||
⚫ | |||
function parse.duration_func(hours) |
|||
hours = string.gsub(hours or '',',','') |
|||
return (tonumber(hours) .. " Hours") |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
smw_property = 'Duration', |
|||
⚫ | |||
} |
} |
||