赞 | 0 |
VIP | 0 |
好人卡 | 3 |
积分 | 2 |
经验 | 14925 |
最后登录 | 2021-3-30 |
在线时间 | 44 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 155
- 在线时间
- 44 小时
- 注册时间
- 2011-9-2
- 帖子
- 33
|
Scene_Battle 4下面:
# 连续伤害
if @active_battler.hp > 0 and @active_battler.slip_damage?
@active_battler.slip_damage_effect
@active_battler.damage_pop = true
end
if @active_battler.state?(51) and @active_battler.hp >0 #51号状态恢复生命
@active_battler.damage=-@active_battler.maxhp/10 #恢复生命百分比,这里设置为10%,也可设置固定值
@active_battler.damage=@active_battler.damage.to_i
@active_battler.hp-=@active_battler.damage
@active_battler.animation_id = 21 #自动补血动画编号
@active_battler.damage_pop = true
end |
|