TDW Experience Curve Customization
Version 1.0
by wrigty12
[For RPGMaker MZ]
Description:
Define and set custom experience curves for individual classes, using JS Code instead of the default EXP Curve Generator!
Functionality:
You can compose a list of different EXP Curves. Then, you link each Class to any of your defined EXP Curves.
Everything is built out in the Plugin Parameters.
Some example defaults (you may recognize them from a certain monster-catching game):
Spoiler: Code n = actor level
Code: - (6/5)*Math.pow(n,3) - 15*Math.pow(n,2) + 100*n - 140;
复制代码
Code: - if (n <= 50) { (Math.pow(n,3)*(100-n))/50 }
- else if (n <= 68) { (Math.pow(n,3)*(150-n))/100 }
- else if (n <= 98) { (Math.pow(n,3)*((1911-10n)/3))/50 }
- else if (n <= 100) { (Math.pow(n,3)*(160-n))/100 };
复制代码
Plugin:
TDW Experience Curve Customization by wrigty12
Credits:
wrigty12
Terms:
Feel free to use in any way you like. No credit required, unless you feel like it!
本贴来自国际rpgmaker官方论坛作者:wrigty12处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址: https://forums.rpgmakerweb.com/threads/tdw-experience-curve-customization.127146/ |