赞 | 0 |
VIP | 258 |
好人卡 | 2 |
积分 | 0 |
经验 | 11030 |
最后登录 | 2016-8-20 |
在线时间 | 36 小时 |
Lv1.梦旅人 ~琉璃の雪~<
- 梦石
- 0
- 星屑
- 49
- 在线时间
- 36 小时
- 注册时间
- 2008-11-6
- 帖子
- 3678
|
如果是脚本位置,那是Game_Battler 3的318行
如果要修改概率,那么ABCDEF分别代表100%,80%,60%,40%,20%和0%
如果要加入别的毒素魔法,那就在Scene_Battle 4 130行:- 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?(9) and @active_battler.hp >0
- @active_battler.damage=+@active_battler.maxhp/12 #百分比 @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
复制代码 |
|