Project1

标题: 如何制作嘲讽效果 [打印本页]

作者: porlutia    时间: 2017-5-19 21:12
标题: 如何制作嘲讽效果
如何制作嘲讽效果
想要实现的效果如下:
敌人或友军中了[嘲讽]状态 使用单体技能只能攻击使用嘲讽技能的人<推想可用技能附带公共事件对使用者附加个状态,再利用脚本用状态判定使用者> 低概率使用群体攻击技能[或不能使用群体攻击技能]
如何实现?
作者: guoxiaomi    时间: 2017-5-19 23:16
在技能释放前改变技能的目标。

我觉得你问了不少类似的问题了,建议参考我签名里的《战斗调用公共事件》。
作者: fux2    时间: 2017-5-25 11:20
在game_party和game_troop内建立一个数组,开启嘲讽的人加入这个数组,选择目标时在数组里选。
作者: 轩筱翎桦子    时间: 2018-2-17 10:34
def set_target_battlers(scope)
    # 行动方的战斗者是敌人的情况下
    if @active_battler.is_a?(Game_Enemy)
      # 效果范围分支
      case scope
      when 1  # 敌单体
        index = @active_battler.current_action.target_index
        #==以下更改内容===============
         target_got = false
         for a in $game_party.actors
           if (@active_battler.state?(99) and a.state?(99))
               @target_battlers.push(a)
               target_got = true
           end
         end
         unless target_got
         @target_battlers.push($game_party.smooth_target_actor(index)) #原有内容
         end
      #==以上更改内容===============
      when 2  # 敌全体
        for actor in $game_party.actors
          if actor.exist?
            @target_battlers.push(actor)
          end
        end


在scene battle 4里面找




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1