赞 | 0 |
VIP | 313 |
好人卡 | 0 |
积分 | 1 |
经验 | 6681 |
最后登录 | 2024-1-20 |
在线时间 | 66 小时 |
Lv1.梦旅人 蚂蚁卡卡
- 梦石
- 0
- 星屑
- 116
- 在线时间
- 66 小时
- 注册时间
- 2007-12-16
- 帖子
- 3081
|
- class Interpreter
- #--------------------------------------------------------------------------
- # ● 战斗处理
- #--------------------------------------------------------------------------
- def command_301
- # 如果不是无效的队伍
- if $data_troops[@parameters[0]] != nil
- # 设置中断战斗标志
- $game_temp.battle_abort = true
- # 设置战斗调用标志
- $game_temp.battle_calling = true unless $DEBUG
- $game_temp.battle_troop_id = @parameters[0]
- $game_temp.battle_can_escape = @parameters[1]
- $game_temp.battle_can_lose = @parameters[2]
- # 设置返回调用
- current_indent = @list[@index].indent
- $game_temp.battle_proc = Proc.new { |n| @branch[current_indent] = n }
- $battle_result = 0
- end
- # 推进索引
- @index += 1
- # 结束
- return false
- end
- #--------------------------------------------------------------------------
- # ● 胜利的情况下
- #--------------------------------------------------------------------------
- def command_601
- common_event = $data_common_events[1]
- # 公共事件有效的情况下
- if common_event != nil
- # 生成子解释器
- @child_interpreter = Interpreter.new(@depth + 1)
- @child_interpreter.setup(common_event.list, @event_id)
- end
- if $battle_result == 1
- # 删除分支数据
- @branch.delete(@list[@index].indent)
- # 继续
- return true
- end
- # 不符合条件的情况下 : 指令跳转
- return command_skip
- end
- #--------------------------------------------------------------------------
- # ● 逃跑的情况下
- #--------------------------------------------------------------------------
- def command_602
- # 战斗结果为逃跑的情况下
- if $battle_result == 2
- # 删除分支数据
- @branch.delete(@list[@index].indent)
- # 继续
- return true
- end
- # 不符合条件的情况下 : 指令跳转
- return command_skip
- end
- #--------------------------------------------------------------------------
- # ● 失败的情况下
- #--------------------------------------------------------------------------
- def command_603
- # 战斗结果为失败的情况下
- if $battle_result == 3
- # 删除分支数据
- @branch.delete(@list[@index].indent)
- # 继续
- return true
- end
- # 不符合条件的情况下 : 指令跳转
- return command_skip
- end
- end
复制代码
请善用搜索功能和查看置顶帖 |
|