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 124: | Line 124: | ||
-- Episode |
-- Episode |
||
local valid_episodes = { |
local valid_episodes = { |
||
['none'] = 'None', |
|||
['hopeport'] = 'Hopeport', |
['hopeport'] = 'Hopeport', |
||
['hopeforest'] = 'Hopeforest', |
['hopeforest'] = 'Hopeforest', |
||
Line 133: | Line 132: | ||
local valid_episode = valid_episodes[string.lower(episode or '')] |
local valid_episode = valid_episodes[string.lower(episode or '')] |
||
if valid_episode then |
if valid_episode then |
||
local page_name = valid_episode .. ' (episode)' |
|||
if valid_episode == 'None' then |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
else |
else |
||
-- Fallback to the original episode name |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
else |
|||
-- Fallback to the original episode name |
|||
return '[[File:'..valid_episode..' episode icon.png|18px|link='..valid_episode..']] [['..valid_episode..']]' |
|||
end |
|||
end |
end |
||
end |
end |
||
Line 179: | Line 174: | ||
-- Premium |
-- Premium |
||
local premium_episodes = { |
local premium_episodes = { |
||
['none'] = 'No', |
|||
['hopeport'] = 'No', |
['hopeport'] = 'No', |
||
['hopeforest'] = 'No', |
['hopeforest'] = 'No', |
||
Line 336: | Line 330: | ||
category_incomplete = 'Needs passiveness' |
category_incomplete = 'Needs passiveness' |
||
} |
} |
||
function parse.difficulty_func(val) |
|||
if val == "0" then |
|||
return "☆☆☆☆☆" |
|||
end |
|||
if val == "1" then |
|||
return "★☆☆☆☆" |
|||
end |
|||
if val == "2" then |
|||
return "★★☆☆☆" |
|||
end |
|||
if val == "3" then |
|||
return "★★★☆☆" |
|||
end |
|||
if val == "4" then |
|||
return "★★★★☆" |
|||
end |
|||
if val == "5" then |
|||
return "★★★★★" |
|||
end |
|||
return "N/A" |
|||
end |
|||
-- Quest difficulty |
|||
parse.difficulty = { |
|||
name = 'difficulty', |
|||
func = parse.difficulty_func, |
|||
smw_property = 'Difficulty', |
|||
category_incomplete = 'Needs difficulty' |
|||
} |
|||
return parse |
return parse |