Skip to content
Permalink
main
Go to file
 
 
Cannot retrieve contributors at this time
12 lines (11 sloc) 334 Bytes
/*:
* @plugindesc Completely customize experience requirements per level.
* @author Ben Hendel-Doying
*
* @help By default, changes the experience requirement to:
* 5 x level x (level - 1)
* Edit this plugin to suit your needs.
*/
Game_Actor.prototype.expForLevel = function(level) {
return 5 * level * (level - 1);
};
You can’t perform that action at this time.