赞 | 44 |
VIP | 0 |
好人卡 | 0 |
积分 | 62 |
经验 | 240 |
最后登录 | 2024-11-8 |
在线时间 | 604 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 6211
- 在线时间
- 604 小时
- 注册时间
- 2017-9-27
- 帖子
- 251
|
- //=============================================================================
- // TH.天浩 - 战斗指令调整
- //=============================================================================
- /*: @plugindesc [th1.01]
- * @author TH.天浩
- *
- * @help
- *
- * 删除队伍指令,将逃跑指令加入到角色指令中。
- *
- *
- * */
- var TH_SceneBattle_startPartyCommandSelection20220427 = Scene_Battle.prototype.startPartyCommandSelection
- Scene_Battle.prototype.startPartyCommandSelection = function() {
- TH_SceneBattle_startPartyCommandSelection20220427.call(this)
- this.commandFight();
- };
- var TH_SceneBattle_createActorCommandWindow20220427 = Scene_Battle.prototype.createActorCommandWindow
- Scene_Battle.prototype.createActorCommandWindow = function() {
- TH_SceneBattle_createActorCommandWindow20220427.call(this)
- this._actorCommandWindow.setHandler('escape', this.commandEscape.bind(this));
- };
- var TH_WindowActorCommand_makeCommandList20220427 = Window_ActorCommand.prototype.makeCommandList
- Window_ActorCommand.prototype.makeCommandList = function() {
- TH_WindowActorCommand_makeCommandList20220427.call(this)
- if (this._actor) {
- this.addCommand(TextManager.escape, 'escape', BattleManager.canEscape());
- }
- };
复制代码 |
|