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 324: | Line 324: | ||
function parse.difficulty_func(val) |
function parse.difficulty_func(val) |
||
if val == |
if val == 0 then |
||
return "☆☆☆☆☆" |
return "☆☆☆☆☆" |
||
end |
end |
||
if val == |
if val == 1 then |
||
return "★☆☆☆☆" |
return "★☆☆☆☆" |
||
end |
end |
||
if val == |
if val == 2 then |
||
return "★★☆☆☆" |
return "★★☆☆☆" |
||
end |
end |
||
if val == |
if val == 3 then |
||
return "★★★☆☆" |
return "★★★☆☆" |
||
end |
end |
||
if val == |
if val == 4 then |
||
return "★★★★☆" |
return "★★★★☆" |
||
end |
end |
||
if val == |
if val == 5 then |
||
return "★★★★★" |
return "★★★★★" |
||
end |
end |
||
Line 350: | Line 350: | ||
func = parse.difficulty_func, |
func = parse.difficulty_func, |
||
smw_property = 'Difficulty', |
smw_property = 'Difficulty', |
||
smw_func = parse.number, |
|||
category_incomplete = 'Needs difficulty' |
category_incomplete = 'Needs difficulty' |
||
} |
} |