mysecretsummervacation2/www/js/plugins/LevelupRecover.js
2023-09-07 13:57:44 -05:00

22 lines
No EOL
359 B
JavaScript
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
/*:
@plugindesc レベルアップの時に回復するプラグインです。
@author 霧島万
*/
(function (_global) {
var CPOlevelUp = Game_Actor.prototype.levelUp;
Game_Actor.prototype.levelUp = function () {
//元の定義
var defaultLevelUp = CPOlevelUp.call(this);
//追記
this._hp = this.mhp;
this._mp = this.mmp;
};
})();