赞 | 0 |
VIP | 44 |
好人卡 | 0 |
积分 | 1 |
经验 | 200 |
最后登录 | 2014-1-18 |
在线时间 | 1 小时 |
Lv1.梦旅人 天壤
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 1 小时
- 注册时间
- 2008-7-18
- 帖子
- 1435
|
简化脚本。
for target in @target_battlers
#################攻击反弹#########################
if target.state?(X) #X为反击状态ID
#如果攻击方是普通攻击,并且对象方伤害不为MISS
if @active_battler.current_action.kind == 0 and target.damage != "Miss"
target.animation_id = XX #设置反击动画ID
@active_battler.animation_id = XX #设置被反击者动画ID
@active_battler.hp -= @active_battler.damage.to_i #伤害=反击者所受伤害
#被反击者追加的状态,true为一定附加,false为一定几率附加。
@active_battler.add_state(X, true)
@active_battler.damage_pop = true
end
end
####################################################
if target.damage != nil
target.damage_pop = true
end
end
在Scene_Battle 4里找到步骤5显示伤害部分,添加
上面的東東不是我原創的` |
|