Project1

标题: 能否帮我详细解读下这段基本脚本?谢谢! [打印本页]

作者: wuoismiao    时间: 2008-3-18 08:10
标题: 能否帮我详细解读下这段基本脚本?谢谢!
#--------------------------------------------------------------------------
  # ● 应用道具的成长效果
  #     user : 使用者
  #     item : 道具
  #--------------------------------------------------------------------------
  def item_growth_effect(user, item)
    if item.parameter_type > 0 and item.parameter_points != 0
      case item.parameter_type
      when 1  # MaxHP
        @maxhp_plus += item.parameter_points
      when 2  # MaxMP
        @maxmp_plus += item.parameter_points
      when 3  # 攻击力
        @atk_plus += item.parameter_points
      when 4  # 防御力
        @def_plus += item.parameter_points
      when 5  # 精神力
        @spi_plus += item.parameter_points
      when 6  # 敏捷性
        @agi_plus += item.parameter_points
      end
    end
  end
  #--------------------------------------------------------------------------
  # ● 应用连续伤害的效果
  #--------------------------------------------------------------------------
  def slip_damage_effect
    if slip_damage? and @hp > 0
      @hp_damage = apply_variance(maxhp / 10, 10)
      @hp_damage = @hp - 1 if @hp_damage >= @hp
      self.hp -= @hp_damage
    end
  end
end


以上究竟是什么意思呢?又如何使用呢?谢谢! [LINE]1,#dddddd[/LINE]此贴于 2008-4-17 1:07:25 被版主snstar2006提醒,请楼主看到后对本贴做出回应。 [LINE]1,#dddddd[/LINE]版务信息:版主帮忙结贴~
作者: wy29    时间: 2008-3-18 08:50
提示: 作者被禁止或删除 内容自动屏蔽
作者: wuoismiao    时间: 2008-3-18 23:38
哦!很感谢哦!
我还想请教下...分散度的作用是什么?能起什么效果?

我如果想做个连击很多下的技能,应该如何入手呢?
作者: wy29    时间: 2008-3-19 00:25
提示: 作者被禁止或删除 内容自动屏蔽




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