赞 | 0 |
VIP | 10 |
好人卡 | 49 |
积分 | 10 |
经验 | 22958 |
最后登录 | 2020-8-1 |
在线时间 | 2161 小时 |
Lv3.寻梦者 酱油的
- 梦石
- 0
- 星屑
- 1035
- 在线时间
- 2161 小时
- 注册时间
- 2007-12-22
- 帖子
- 3271
|
可以設定一個狀態:攻反
然後在Game_Battler 3中設置
attack_effect(attacker)中(攻擊傷害計算)
line:48
把
- # HP 的伤害计算
- self.hp -= self.damage
复制代码
改爲
- if attacker.state?(狀態ID)
- attacker.hp -= self.damage
- attacker.damage = self.damage
- self.damage = nil
- else
- self.hp -= self.damage
- end
复制代码
然後在
Scene_Battle 4
line:434
- for target in @target_battlers
- if target.damage != nil
- target.damage_pop = true
- end
- end
复制代码
下加入
- if @active_battler.damage != nil
- @active_battler.damage_pop = true
- end
复制代码 |
|