赞 | 1 |
VIP | 32 |
好人卡 | 13 |
积分 | 16 |
经验 | 88876 |
最后登录 | 2021-7-25 |
在线时间 | 2205 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1641
- 在线时间
- 2205 小时
- 注册时间
- 2010-6-27
- 帖子
- 1299
|
本帖最后由 pigsss 于 2011-4-27 22:52 编辑
回复 柳橙汁 的帖子- #--------------------------------------------------------------------------
- # ● 刷新画面 (主回合步骤 4 : 对像方动画)
- #--------------------------------------------------------------------------
- def update_phase4_step4
- # 对像方动画
- for target in @target_battlers
- target.animation_id = @animation2_id
- target.animation_hit = (target.damage != "Miss")
- #------------------------------
- if @active_battler.current_action.skill_id == 3 and rand(100) < 50
- target.add_state(30)
- end
- #------------------------------
- end
- # 限制动画长度、最低 8 帧
- @wait_count = 8
- # 移至步骤 5
- @phase4_step = 5
- end
复制代码 |
|