赞 | 58 |
VIP | 37 |
好人卡 | 59 |
积分 | 12 |
经验 | 66255 |
最后登录 | 2023-5-29 |
在线时间 | 1017 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1232
- 在线时间
- 1017 小时
- 注册时间
- 2011-4-30
- 帖子
- 1516
|
- BattleManager.endBattle = function(result) {
- this._phase = 'battleEnd';
- if (this._eventCallback) {
- this._eventCallback(result);
- }
- //
- //下
- var ids= []
- $gameParty._actors.map(function(id) {
- if ($gameActors.actor(id).isDead()){
- ids.push(id)
- }
- });
- for(var i=ids.length-1;i>=0;i--){
- $gameParty.removeActor(ids[i])
- }
- //上
- //
- if (result === 0) {
- $gameSystem.onBattleWin();
- } else if (this._escaped) {
- $gameSystem.onBattleEscape();
- }
- };
复制代码 |
评分
-
查看全部评分
|