Add english version

This commit is contained in:
OleSTEEP 2024-01-15 18:44:53 +03:00
parent 7bf44fa645
commit 49e9a37f3c
1675 changed files with 1309268 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;
};