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 480: | Line 480: | ||
smw_func = parse.difficulty_smw, |
smw_func = parse.difficulty_smw, |
||
category_incomplete = 'Needs difficulty' |
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 = 'quest_type', |
|||
smw_func = parse.quest_type_smw, |
|||
category_incomplete = 'Needs quest_type' |
|||
} |
} |
||