Initial Commit

This commit is contained in:
OleSTEEP 2023-12-29 23:09:55 +03:00
commit ec5c71b3ac
1712 changed files with 1767257 additions and 0 deletions

View file

@ -0,0 +1,13 @@
/*=============================================================================
* 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;
};