赞 | 1 |
VIP | 22 |
好人卡 | 4 |
积分 | 1 |
经验 | 14594 |
最后登录 | 2015-10-25 |
在线时间 | 796 小时 |
Lv1.梦旅人 綾川司の姫様<
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 796 小时
- 注册时间
- 2007-12-20
- 帖子
- 4520
|
S大~!{/se}你的维纳利斯传说是俺的偶像啊~!{/hx}来到6R第二个游戏玩的就是那个,非常佩服那时候就能写出那么好剧本的您XDDD
咳咳……跑题了……
其实换成敌人的话似乎也差不多,同样的if语句复制粘贴一份出来改成Enemy看看?主要就是一个判断的部分:
#--------------------------------------------------------------------------
# ● 刷新画面 (主回合步骤 3 : 行动方动画)
#--------------------------------------------------------------------------
def update_phase4_step3
# 行动方动画 (ID 为 0 的情况下是白色闪烁)
if @animation1_id == 0
@active_battler.white_flash = true
else
@active_battler.animation_id = @animation1_id
@active_battler.animation_hit = true
end
# 对像方动画
for target in @target_battlers
if @active_battler.is_a?(Game_Actor) and target.is_a?(Game_Actor) and
@active_battler.id == target.id
target.animation_id = @animation1_id
elsif
@active_battler.is_a?(Game_Enemy) and target.is_a?(Game_Enemy) and @active_battler.id == target.id
target.animation_id = @animation1_id
else
target.animation_id = @animation2_id
target.animation_hit = (target.damage != "Miss")
end
end
# 移至步骤 4
@phase4_step = 4
end
#--------------------------------------------------------------------------
# ● 刷新画面 (主回合步骤 4 : 对像方动画)
#--------------------------------------------------------------------------
def update_phase4_step4
# 对像方动画
for target in @target_battlers
if @active_battler.is_a?(Game_Actor) and target.is_a?(Game_Actor) and
@active_battler.id == target.id
target.animation_id = @animation2_id
target.animation_hit = (target.damage != "Miss")
elsif
@active_battler.is_a?(Game_Enemy) and target.is_a?(Game_Enemy) and
@active_battler.id == target.id
target.animation_id = @animation2_id
target.animation_hit = (target.damage != "Miss")
end
end
# 限制动画长度、最低 8 帧
@wait_count = 8
# 移至步骤 5
@phase4_step = 5
end
目前暂时没时间测试效果做工程……orz如果出Syntax错误请加End|||| 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|