设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1644|回复: 4
打印 上一主题 下一主题

[已经过期] 被攻击者震动效果

[复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
105 小时
注册时间
2010-6-20
帖子
122
跳转到指定楼层
1
发表于 2010-11-22 01:37:45 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
我之前看过,不过忘记了。攻击时。被攻击者显示震动效果。战斗图在震动。就好像菜鸟横版一样。不过我在默认战斗脚本里面好像看过
喵~~~~

Lv1.梦旅人

梦石
0
星屑
229
在线时间
596 小时
注册时间
2010-6-21
帖子
1218
2
发表于 2010-11-22 10:25:15 | 只看该作者
请修改标签

点评

标签版主可以帮其修改,可以使用“分类”页面  发表于 2010-11-22 10:30

评分

参与人数 1星屑 -60 收起 理由
fux2 -60 技术区严禁酱油

查看全部评分

回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
75 小时
注册时间
2010-10-11
帖子
275
3
发表于 2010-11-22 10:30:24 | 只看该作者
LZ说的好像是RTAB,在置顶帖能搜索到,有2种,一个i是原版的默认系统的,另一个是别人修改过的横版RTAB
重新制作,我就是个渣渣,嗯嗯……
回复 支持 反对

使用道具 举报

魅影天仙 该用户已被删除
4
发表于 2010-11-22 12:35:24 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
回复 支持 反对

使用道具 举报

Lv3.寻梦者

梦石
0
星屑
3852
在线时间
1582 小时
注册时间
2006-5-5
帖子
2743
5
发表于 2010-11-22 21:11:20 | 只看该作者
楼主说的效果应该是彩虹神剑的效果。
  1. =begin
  2. ==============================================================================

  3. 彩虹神剑(伤害分段显示)显示总伤害版 v1.0b

  4. ==============================================================================

  5. 彩虹神剑 by 柳柳
  6. 显示总伤害修改 by 叶子

  7. ==============================================================================

  8. 6-20-2006 v1.0
  9. 在彩虹神剑的基础上增加了显示总伤害的功能,而且总伤害的数字是弹出伤害时逐渐增加的

  10. v1.0a
  11. 修正了显示伤害和实际伤害有差别的问题
  12. 修正了miss的情况下显示miss混乱的问题
  13. 修正了对己方技能重复显示伤害的问题
  14. 未修正播放目标动画第一帧时目标有时无端跳动的BUG

  15. v1.0b
  16. 修改了总伤害数字的位置和z坐标
  17. 未修正播放目标动画第一帧时目标有时无端跳动的BUG

  18. ==============================================================================
  19. =end
  20. # 核心的说明:
  21. # damage_pop 不再附带damage()的功能,这个放到animation里面去了

  22. module RPG
  23. #--------------------------------------------------------------------------
  24. # ● 常量设定
  25. #--------------------------------------------------------------------------
  26. # 是否显示总伤害
  27. SHOW_TOTAL_DAMAGE = true
  28. # 角色受攻击时是否跳一下
  29. BATTLER_JUMP = true

  30. class Sprite < ::Sprite
  31.    #==========================================
  32.    # 修改说明:
  33.    # @flash_shake用来制作挨打时候跳跃
  34.    # @_damage    用来记录每次打击之后弹出数字
  35.    # @_total_damage 记录总伤害
  36.    # @_total_damage_duration 总伤害持续帧
  37.    #==========================================
  38.    #alias 66RPG_rainbow_initialize : initialize
  39.    def initialize(viewport = nil)
  40.      #66RPG_rainbow_initialize(viewport)
  41.      super(viewport)
  42.      @_whiten_duration = 0
  43.      @_appear_duration = 0
  44.      @_escape_duration = 0
  45.      @_collapse_duration = 0
  46.      @_damage_duration = 0
  47.      @_animation_duration = 0
  48.      @_blink = false
  49.      # 挨打时候跳跃
  50.      @flash_shake = 0
  51.      # 伤害记录数组
  52.      @_damage = []
  53.      # 总伤害数字
  54.      @_total_damage = 0
  55.      # 总伤害持续帧
  56.      @_total_damage_duration = 0
  57.    end
  58.    def damage(value, critical)
  59.      if value.is_a?(Numeric)
  60.        damage_string = value.abs.to_s
  61.      else
  62.        damage_string = value.to_s
  63.      end
  64.      bitmap = Bitmap.new(160, 48)
  65.      bitmap.font.name = "Arial Black"
  66.      bitmap.font.size = 32
  67.      bitmap.font.color.set(0, 0, 0)
  68.      bitmap.draw_text(-1, 12-1, 160, 36, damage_string, 1)
  69.      bitmap.draw_text(+1, 12-1, 160, 36, damage_string, 1)
  70.      bitmap.draw_text(-1, 12+1, 160, 36, damage_string, 1)
  71.      bitmap.draw_text(+1, 12+1, 160, 36, damage_string, 1)
  72.      #=======================================
  73.      # 修改:颜色
  74.      #=======================================
  75.      if value.is_a?(Numeric) and value < 0
  76.        bitmap.font.color.set(176, 255, 144)
  77.      else
  78.        bitmap.font.color.set(255, 55, 55)
  79.      end
  80.      bitmap.draw_text(0, 12, 160, 36, damage_string, 1)
  81.      if critical
  82.        bitmap.font.size = 20
  83.        bitmap.font.color.set(0, 0, 0)
  84.        bitmap.draw_text(-1, -1, 160, 20, "CRITICAL", 1)
  85.        bitmap.draw_text(+1, -1, 160, 20, "CRITICAL", 1)
  86.        bitmap.draw_text(-1, +1, 160, 20, "CRITICAL", 1)
  87.        bitmap.draw_text(+1, +1, 160, 20, "CRITICAL", 1)
  88.        bitmap.font.color.set(255, 255, 255)
  89.        bitmap.draw_text(0, 0, 160, 20, "CRITICAL", 1)
  90.      end
  91.      @_damage_sprite = ::Sprite.new(self.viewport)
  92.      @_damage_sprite.bitmap = bitmap
  93.      @_damage_sprite.ox = 80
  94.      @_damage_sprite.oy = 20
  95.      @_damage_sprite.x = self.x
  96.      @_damage_sprite.y = self.y - self.oy / 2
  97.      @_damage_sprite.z = 3000
  98.      @_damage_duration = 40
  99.      #=======================================
  100.      # 修改:推入新的伤害
  101.      #=======================================
  102.      @_damage.push([@_damage_sprite,@_damage_duration-10,0, rand(30) - 15, rand(3)])
  103.      # 总伤害处理
  104.      make_total_damage(value)
  105.    end
  106.    #--------------------------------------------------------------------------
  107.    # ● 总伤害处理
  108.    #--------------------------------------------------------------------------
  109.    def make_total_damage(value)
  110.      if value.is_a?(Numeric) and SHOW_TOTAL_DAMAGE
  111.        @_total_damage += value
  112.      else
  113.        return
  114.      end
  115.      bitmap = Bitmap.new(300, 150)
  116.      bitmap.font.name = "Arial Black"
  117.      bitmap.font.size = 48
  118.      bitmap.font.color.set(0, 0, 0)
  119.      bitmap.draw_text(+2, 12+2, 160, 36, @_total_damage.abs.to_s, 1)
  120.      if @_total_damage < 0
  121.        bitmap.font.color.set(80, 255, 00)
  122.      else
  123.        bitmap.font.color.set(255, 140, 0)
  124.      end
  125.      bitmap.draw_text(0, 12, 160, 36, @_total_damage.abs.to_s, 1)
  126.      if @_total_damage_sprite.nil?
  127.        @_total_damage_sprite = ::Sprite.new(self.viewport)
  128.        @_total_damage_sprite.ox = 80
  129.        @_total_damage_sprite.oy = 20
  130.        @_total_damage_sprite.z = 3000
  131.      end
  132.      @_total_damage_sprite.bitmap = bitmap
  133.      @_total_damage_sprite.zoom_x = 1.5
  134.      @_total_damage_sprite.zoom_y = 1.5
  135.      @_total_damage_sprite.x = self.x
  136.      @_total_damage_sprite.y = self.y  - self.oy / 2 - 64
  137.      @_total_damage_sprite.z = 3001
  138.      @_total_damage_duration = 80
  139.    end
  140.    def animation(animation, hit, battler_damage="", battler_critical=false)
  141.      dispose_animation      
  142.      #=======================================
  143.      # 修改:记录伤害和critical
  144.      #=======================================
  145.      @battler_damage = battler_damage
  146.      @battler_critical = battler_critical
  147.      @_animation = animation
  148.      return if @_animation == nil
  149.      @_animation_hit = hit
  150.      @_animation_duration = @_animation.frame_max
  151.      animation_name = @_animation.animation_name
  152.      animation_hue = @_animation.animation_hue
  153.      bitmap = RPG::Cache.animation(animation_name, animation_hue)
  154.      #=======================================
  155.      # 修改:计算总闪光权限值
  156.      #=======================================
  157.      for timing in @_animation.timings
  158.        quanzhong = animation_process_timing(timing, @_animation_hit,true)
  159.        @all_quanzhong += quanzhong
  160.        # 记录最后一次闪光
  161.        @_last_frame = timing.frame if quanzhong != 0
  162.      end      
  163.      if @@_reference_count.include?(bitmap)
  164.        @@_reference_count[bitmap] += 1
  165.      else
  166.        @@_reference_count[bitmap] = 1
  167.      end
  168.      #=======================================
  169.      # 修改:行动方动画不显示伤害
  170.      #=======================================
  171.      if $scene.is_a?(Scene_Battle)
  172.        if $scene.animation1_id == @battler.animation_id
  173.          @battler_damage = ""
  174.        end
  175.      end
  176.      @_animation_sprites = []
  177.      if @_animation.position != 3 or not @@_animations.include?(animation)
  178.        for i in 0..15
  179.          sprite = ::Sprite.new(self.viewport)
  180.          sprite.bitmap = bitmap
  181.          sprite.visible = false
  182.          @_animation_sprites.push(sprite)
  183.        end
  184.        unless @@_animations.include?(animation)
  185.          @@_animations.push(animation)
  186.        end
  187.      end
  188.      update_animation
  189.    end
  190.    #=======================================
  191.    # 修改:更换清除伤害的算法,以防万一
  192.    #       本内容在脚本中没有使用过
  193.    #=======================================
  194.    def dispose_damage
  195.      for damage in @_damage.reverse
  196.        damage[0].bitmap.dispose
  197.        damage[0].dispose
  198.        @_damage.delete(damage)
  199.      end
  200.      @_total_damage = 0
  201.      @_last_frame = -1
  202.      if @_total_damage_sprite != nil
  203.        @_total_damage_duration = 0
  204.        @_total_damage_sprite.bitmap.dispose
  205.        @_total_damage_sprite.dispose
  206.        @_total_damage_sprite = nil
  207.      end
  208.    end
  209.    def dispose_animation
  210.      #=======================================
  211.      # 修改:清除记录的伤害,清除权重记录
  212.      #=======================================
  213.      @battler_damage = nil
  214.      @battler_critical = nil
  215.      @all_quanzhong = 1
  216.      @_total_damage = 0
  217.      @_last_frame = -1
  218.      if @_animation_sprites != nil
  219.        sprite = @_animation_sprites[0]
  220.        if sprite != nil
  221.          @@_reference_count[sprite.bitmap] -= 1
  222.          if @@_reference_count[sprite.bitmap] == 0
  223.            sprite.bitmap.dispose
  224.          end
  225.        end
  226.        for sprite in @_animation_sprites
  227.          sprite.dispose
  228.        end
  229.        @_animation_sprites = nil
  230.        @_animation = nil
  231.      end
  232.    end
  233.    def update
  234.      super
  235.      if @_whiten_duration > 0
  236.        @_whiten_duration -= 1
  237.        self.color.alpha = 128 - (16 - @_whiten_duration) * 10
  238.      end
  239.      if @_appear_duration > 0
  240.        @_appear_duration -= 1
  241.        self.opacity = (16 - @_appear_duration) * 16
  242.      end
  243.      if @_escape_duration > 0
  244.        @_escape_duration -= 1
  245.        self.opacity = 256 - (32 - @_escape_duration) * 10
  246.      end
  247.      if @_collapse_duration > 0
  248.        @_collapse_duration -= 1
  249.        self.opacity = 256 - (48 - @_collapse_duration) * 6
  250.      end
  251.      #=======================================
  252.      # 修改:更新算法,更新弹出
  253.      #=======================================
  254.      if @_damage_duration > 0
  255.        @_damage_duration -= 1
  256.        for damage in @_damage
  257.          damage[0].x = self.x + self.viewport.rect.x -
  258.                        self.ox + self.src_rect.width / 2 +
  259.                        (40 - damage[1]) * damage[3] / 10
  260.          damage[0].y -= damage[4]+damage[1]/10
  261.          damage[0].opacity = damage[1]*20
  262.          damage[1] -= 1
  263.          if damage[1]==0
  264.            damage[0].bitmap.dispose
  265.            damage[0].dispose
  266.            @_damage.delete(damage)
  267.            next
  268.          end
  269.        end
  270.      end
  271.      #=======================================
  272.      # 添加:弹出总伤害
  273.      #=======================================
  274.      if @_total_damage_duration > 0
  275.        @_total_damage_duration -= 1
  276.        @_total_damage_sprite.y -= 1 if @_total_damage_duration % 2 == 0
  277.        if @_total_damage_sprite.zoom_x > 1.0
  278.          @_total_damage_sprite.zoom_x -= 0.05
  279.        end
  280.        if @_total_damage_sprite.zoom_y > 1.0
  281.          @_total_damage_sprite.zoom_y -= 0.05
  282.        end
  283.        @_total_damage_sprite.opacity = 256 - (24 - @_total_damage_duration) * 16
  284.        if @_total_damage_duration <= 0
  285.          @_total_damage = 0
  286.          @_total_damage_duration = 0
  287.          @_total_damage_sprite.bitmap.dispose
  288.          @_total_damage_sprite.dispose
  289.          @_total_damage_sprite = nil
  290.        end
  291.      end
  292.      #=======================================
  293.      if @_animation != nil and (Graphics.frame_count % 2 == 0)
  294.        @_animation_duration -= 1
  295.        update_animation
  296.      end
  297.      if @_loop_animation != nil and (Graphics.frame_count % 2 == 0)
  298.        update_loop_animation
  299.        @_loop_animation_index += 1
  300.        @_loop_animation_index %= @_loop_animation.frame_max
  301.      end
  302.      if @_blink
  303.        @_blink_count = (@_blink_count + 1) % 32
  304.        if @_blink_count < 16
  305.          alpha = (16 - @_blink_count) * 6
  306.        else
  307.          alpha = (@_blink_count - 16) * 6
  308.        end
  309.        self.color.set(255, 255, 255, alpha)
  310.      end
  311.      @@_animations.clear
  312.    end
  313.    def update_animation
  314.      if @_animation_duration > 0
  315.        frame_index = @_animation.frame_max - @_animation_duration
  316.        cell_data = @_animation.frames[frame_index].cell_data
  317.        position = @_animation.position
  318.        animation_set_sprites(@_animation_sprites, cell_data, position)
  319.        #=======================================
  320.        # 修改:弹出伤害,权重计算
  321.        #=======================================
  322.        for timing in @_animation.timings
  323.          if timing.frame == frame_index
  324.            t = 1.0 * animation_process_timing(timing, @_animation_hit)            
  325.            #p t,"当前权重", @all_quanzhong,"总权重"
  326.            if @battler_damage.is_a?(Numeric) and t != 0
  327.              t *= @battler_damage
  328.              t /= @all_quanzhong
  329.              #p t,"当前伤害",@battler_damage,"总伤害"
  330.              t = t.to_i
  331.              # 最后一次闪光的话,伤害修正
  332.              if frame_index == @_last_frame
  333.                @_total_damage = @battler_damage - t
  334.              end
  335.              #p t,@battler_damage,@all_quanzhong
  336.              damage(t,@battler_critical)
  337.            # 防止重复播放miss
  338.            elsif !@battler_damage.is_a?(Numeric) and timing.flash_scope != 0
  339.              damage(@battler_damage,@battler_critical)
  340.            end
  341.          end
  342.        end
  343.      else
  344.        dispose_animation
  345.      end
  346.    end
  347.    #=======================================
  348.    # 修改:敌人跳跃的功能 + 添加返回数值
  349.    #=======================================
  350.     def animation_process_timing(timing, hit,dontflash=false)
  351.       if (timing.condition == 0) or
  352.          (timing.condition == 1 and hit == true) or
  353.          (timing.condition == 2 and hit == false)
  354.         unless dontflash
  355.           if timing.se.name != ""
  356.             se = timing.se
  357.             Audio.se_play("Audio/SE/" + se.name, se.volume, se.pitch)
  358.           end
  359.         end
  360.         case timing.flash_scope
  361.         when 1
  362.           unless dontflash
  363.             self.flash(timing.flash_color, timing.flash_duration * 2)
  364.             if @_total_damage >0
  365.               @flash_shake_switch = true
  366.               @flash_shake = 10
  367.             end
  368.           end
  369.           return timing.flash_color.alpha * timing.flash_duration
  370.         when 2
  371.           unless dontflash
  372.             if self.viewport != nil
  373.               self.viewport.flash(timing.flash_color, timing.flash_duration * 2)
  374.               return timing.flash_color.alpha * timing.flash_duration
  375.             end
  376.           end
  377.         when 3
  378.           unless dontflash
  379.             self.flash(nil, timing.flash_duration * 2)
  380.           end
  381.           return timing.flash_color.alpha * timing.flash_duration
  382.         end
  383.       end      
  384.       return 0
  385.     end   
  386. end
  387. end
  388. #==============================================================================
  389. # ■ Sprite_Battler
  390. #==============================================================================
  391. class Sprite_Battler < RPG::Sprite
  392. #--------------------------------------------------------------------------
  393. # ● 初始化对像
  394. #    添加跳跃记录
  395. #--------------------------------------------------------------------------
  396. def initialize(viewport, battler = nil)
  397.   super(viewport)
  398.   @battler = battler
  399.   @battler_visible = false
  400.   @flash_shake_switch = true
  401. end
  402. #--------------------------------------------------------------------------
  403. # ● 刷新画面
  404. #    增添跳跃功能
  405. #--------------------------------------------------------------------------
  406. def update
  407.   super
  408.   # 战斗者为 nil 的情况下
  409.   if @battler == nil
  410.     self.bitmap = nil
  411.     loop_animation(nil)
  412.     return
  413.   end
  414.   # 文件名和色相与当前情况有差异的情况下
  415.   if @battler.battler_name != @battler_name or
  416.      @battler.battler_hue != @battler_hue
  417.     # 获取、设置位图
  418.     @battler_name = @battler.battler_name
  419.     @battler_hue = @battler.battler_hue
  420.     self.bitmap = RPG::Cache.battler(@battler_name, @battler_hue)
  421.     @width = bitmap.width
  422.     @height = bitmap.height
  423.     self.ox = @width / 2
  424.     self.oy = @height
  425.     # 如果是战斗不能或者是隐藏状态就把透明度设置成 0
  426.     if @battler.dead? or @battler.hidden
  427.       self.opacity = 0
  428.     end
  429.   end
  430.   # 动画 ID 与当前的情况有差异的情况下
  431.   if @battler.damage == nil and
  432.      @battler.state_animation_id != @state_animation_id
  433.     @state_animation_id = @battler.state_animation_id
  434.     loop_animation($data_animations[@state_animation_id])
  435.   end
  436.   # 应该被显示的角色的情况下
  437.   if @battler.is_a?(Game_Actor) and @battler_visible
  438.     # 不是主状态的时候稍稍降低点透明度
  439.     if $game_temp.battle_main_phase
  440.       self.opacity += 3 if self.opacity < 255
  441.     else
  442.       self.opacity -= 3 if self.opacity > 207
  443.     end
  444.   end
  445.   # 明灭
  446.   if @battler.blink
  447.     blink_on
  448.   else
  449.     blink_off
  450.   end
  451.   # 不可见的情况下
  452.   unless @battler_visible
  453.     # 出现
  454.     if not @battler.hidden and not @battler.dead? and
  455.        (@battler.damage == nil or @battler.damage_pop)
  456.       appear
  457.       @battler_visible = true
  458.     end
  459.   end
  460.   # 可见的情况下
  461.   if @battler_visible
  462.     # 逃跑
  463.     if @battler.hidden
  464.       $game_system.se_play($data_system.escape_se)
  465.       escape
  466.       @battler_visible = false
  467.     end
  468.     # 白色闪烁
  469.     if @battler.white_flash
  470.       whiten
  471.       @battler.white_flash = false
  472.     end
  473.     # 动画
  474.     if @battler.animation_id != 0
  475.       animation = $data_animations[@battler.animation_id]
  476.       animation(animation, @battler.animation_hit,@battler.damage, @battler.critical)
  477.       @battler.animation_id = 0
  478.     end
  479.     # 伤害
  480.     if @battler.damage_pop
  481.       @battler.damage = nil
  482.       @battler.critical = false
  483.       @battler.damage_pop = false
  484.     end
  485.     # korapusu
  486.     if @battler.damage == nil and @battler.dead?
  487.       if @battler.is_a?(Game_Enemy)
  488.         $game_system.se_play($data_system.enemy_collapse_se)
  489.       else
  490.         $game_system.se_play($data_system.actor_collapse_se)
  491.       end
  492.       collapse
  493.       @battler_visible = false
  494.     end
  495.   end
  496.   # 设置活动块的坐标
  497.   if @flash_shake_switch == true
  498.     self.x = @battler.screen_x
  499.     self.y = @battler.screen_y
  500.     self.z = @battler.screen_z
  501.     @flash_shake_switch = false
  502.   end
  503.   if @flash_shake != 0 and @battler.damage != nil and RPG::BATTLER_JUMP
  504.     case @flash_shake
  505.     when 9..10
  506.       self.x = @battler.screen_x
  507.       self.y -=4
  508.       self.z = @battler.screen_z
  509.     when 6..8
  510.       self.x = @battler.screen_x
  511.       self.y -=2
  512.       self.z = @battler.screen_z
  513.     when 3..5
  514.       self.x = @battler.screen_x
  515.       self.y +=2
  516.       self.z = @battler.screen_z
  517.     when 2
  518.       self.x = @battler.screen_x
  519.       self.y += 4
  520.       self.z = @battler.screen_z
  521.     when 1
  522.       self.x = @battler.screen_x
  523.       self.y = @battler.screen_y
  524.       self.z = @battler.screen_z
  525.     end
  526.     @flash_shake -= 1
  527.   end
  528. end
  529. end

  530. #==============================================================================
  531. # ■ Scene_Battle
  532. #------------------------------------------------------------------------------
  533. #  处理战斗画面的类。
  534. #==============================================================================

  535. class Scene_Battle
  536. #--------------------------------------------------------------------------
  537. # ● 定义实例变量
  538. #--------------------------------------------------------------------------
  539. attr_reader   :animation1_id                    # 行动方动画ID
  540. end
复制代码
步兵中尉
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-15 21:06

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表