赞 | 0 |
VIP | 1 |
好人卡 | 5 |
积分 | 1 |
经验 | 47515 |
最后登录 | 2024-9-13 |
在线时间 | 216 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 90
- 在线时间
- 216 小时
- 注册时间
- 2007-9-5
- 帖子
- 370
|
Scene_Battle 4★ line 436 左右我添加了以下彩色部分,但是魔法反弹提示还是"attack cancelled"
if target.state?(18)
if @active_battler.current_action.kind == 0 and target.damage != "Miss"
target.damage = "attack cancelled"
target.damage_pop = true
@active_battler.hp -= @active_battler.damage.to_i
@active_battler.damage_pop = true
end
end
if target.state?(17)
if @active_battler.current_action.kind == 0 and target.damage != "Miss"
target.damage = "magic cancelled"
target.damage_pop = true
@active_battler.hp -= @active_battler.damage.to_i
@active_battler.damage_pop = true
end
end |
|