赞 | 0 |
VIP | 16 |
好人卡 | 1 |
积分 | 1 |
经验 | 8628 |
最后登录 | 2018-9-22 |
在线时间 | 5 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 5 小时
- 注册时间
- 2009-4-11
- 帖子
- 131
|
在Scene_Battle 4中找到
if target.is_a?(Game_Actor)
target.battler_name = target.battler_name.split(/★/)[0]
if target.current_action.kind == 0 and target.current_action.basic == 1
target.battler_name = target.battler_name + "★3"
else
target.battler_name = target.battler_name + "★2"
end
改为
if target.is_a?(Game_Actor)
target.battler_name = target.battler_name.split(/★/)[0]
if target.current_action.kind == 0 and target.current_action.basic == 1 or @active_battler.current_action.kind == 2
target.battler_name = target.battler_name + "★3"
else
target.battler_name = target.battler_name + "★2"
end
这样加血就会显示 “防御” 动画了!。。 |
|