More actions
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
['difficulties'] = { | ['difficulties'] = { | ||
['effortless'] = { | |||
display = 'Effortless'; | |||
color = '#A5A2A3'; | |||
}; | |||
['easy'] = { | ['easy'] = { | ||
display = 'Easy'; | display = 'Easy'; | ||
color = '#00FF00'; | color = '#00FF00'; | ||
}; | |||
['medium'] = { | |||
display = 'Medium'; | |||
color = '#FFFF00'; | |||
}; | |||
['hard'] = { | |||
display = 'Hard'; | |||
color = '#ff0000'; | |||
}; | |||
['difficult'] = { | |||
display = 'Difficult'; | |||
color = '#000000'; | |||
}; | |||
['extreme'] = { | |||
display = 'Extreme'; | |||
color = '#000000'; | |||
}; | |||
['challenging'] = { | |||
display = 'Challenging'; | |||
color = '#000000'; | |||
}; | |||
['impossible'] = { | |||
display = 'Impossible'; | |||
color = '#000000'; | |||
}; | |||
['remorseless'] = { | |||
display = 'Remorseless'; | |||
color = '#000000'; | |||
}; | |||
['insane'] = { | |||
display = 'Insane'; | |||
color = '#000000'; | |||
}; | |||
['terrifying'] = { | |||
display = 'Terrifying'; | |||
color = '#000000'; | |||
}; | }; | ||
}; | }; | ||
} | } |
Revision as of 13:17, 7 April 2025
Documentation for this module may be created at Module:Difficulties/config/doc
return {
['meta'] = {
page_prefix = 'Difficulty/';
};
['difficulties'] = {
['effortless'] = {
display = 'Effortless';
color = '#A5A2A3';
};
['easy'] = {
display = 'Easy';
color = '#00FF00';
};
['medium'] = {
display = 'Medium';
color = '#FFFF00';
};
['hard'] = {
display = 'Hard';
color = '#ff0000';
};
['difficult'] = {
display = 'Difficult';
color = '#000000';
};
['extreme'] = {
display = 'Extreme';
color = '#000000';
};
['challenging'] = {
display = 'Challenging';
color = '#000000';
};
['impossible'] = {
display = 'Impossible';
color = '#000000';
};
['remorseless'] = {
display = 'Remorseless';
color = '#000000';
};
['insane'] = {
display = 'Insane';
color = '#000000';
};
['terrifying'] = {
display = 'Terrifying';
color = '#000000';
};
};
}