Project1
标题:
怎样让角色死亡时mp和tp也归0呢
[打印本页]
作者:
胖次大人
时间:
2017-4-30 16:50
标题:
怎样让角色死亡时mp和tp也归0呢
如题。怎样让角色死亡时mp和tp也归0呢
作者:
百里_飞柳
时间:
2017-4-30 17:34
rpg_objects.js 中的
Game_BattlerBase.prototype.die = function() {
this._hp = 0;
this.clearStates();
this.clearBuffs();
};
复制代码
新增为
Game_BattlerBase.prototype.die = function() {
this._hp = 0;
this._mp = 0;
this._tp = 0;
this.clearStates();
this.clearBuffs();
};
复制代码
作者:
胖次大人
时间:
2017-4-30 18:22
谢谢大佬!~
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1