OMORI_Android/www.eng/js/plugins/OMORI_BattleFormulas.js
2024-01-15 18:44:53 +03:00

13 lines
600 B
JavaScript

/*=============================================================================
* OMORI -- Battle Formulas
* By Archeia - http://www.archeia.moe
*=============================================================================
//* -----------------------------------------------------------------------*/
//* Release Stress/Energy
//* this.omoriStressReleaseFormula(a, b)
//* -----------------------------------------------------------------------*/
Game_Action.prototype.omoriStressReleaseFormula = function(a, b) {
var value = a.level >= 30 ? 1000 : a.level >= 15 ? 600 : 300
return value;
};