赞 | 0 |
VIP | 10 |
好人卡 | 0 |
积分 | 1 |
经验 | 10777 |
最后登录 | 2013-2-11 |
在线时间 | 128 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 128 小时
- 注册时间
- 2009-1-28
- 帖子
- 2790
|
本帖最后由 霜冻之狼 于 2009-8-11 15:57 编辑
如果我没记错,虚弱状态应该是只有DNF才有的系统......
好吧无视我这段话
在Scene_Battle的190有这段话,你自己看着F1文档改吧- #--------------------------------------------------------------------------
- # ● 战斗结束
- # result : 结果 (0:胜利 1:逃走 2:败北)
- #--------------------------------------------------------------------------
- def battle_end(result)
- if result == 2 and not $game_troop.can_lose
- call_gameover
- else
- $game_party.clear_actions
- $game_party.remove_states_battle
- $game_troop.clear
- if $game_temp.battle_proc != nil
- $game_temp.battle_proc.call(result)
- $game_temp.battle_proc = nil
- end
- unless $BTEST
- $game_temp.map_bgm.play
- $game_temp.map_bgs.play
- end
- $scene = Scene_Map.new
- @message_window.clear
- Graphics.fadeout(30)
- end
- $game_temp.in_battle = false
- end
复制代码 |
|