phantom-soul-sword-lambda-n.../www/js/plugins/TYA_BattleMessageCustom.js
2025-07-11 18:31:55 -07:00

16 lines
No EOL
374 B
JavaScript

/*:
* @plugindesc 戦闘開始時の「~が現れた!」というメッセージを非表示にします。
* @author 茶の助
*/
(function() {
BattleManager.startBattle = function() {
this._phase = 'start';
$gameSystem.onBattleStart();
$gameParty.onBattleStart();
$gameTroop.onBattleStart();
//this.displayStartMessages();
};
})();