検索結果 2 件

by 名無し2022
2022年7月04日(月) 16:55
フォーラム: MZ:質問
トピック: 【解決済み】強化と弱体の解除をターン終了時に行いたい(МZ)
返信数: 4
閲覧数: 2013

Re: 強化と弱体の解除をターン終了時に行いたい(МZ)

rmmz_objects.jsの中に、MVのそれに該当しそうな部分がありました。

Game_Battler.prototype.onAllActionsEnd = function() {
this.clearResult();
this.removeStatesAuto(1);
this.removeBuffsAuto();
};

Game_Battler.prototype.onTurnEnd = function() {
this.clearResult();
this.regenerateAll();
this.updateStateTurns();
this ...

詳細検索ページに戻る