赞 | 398 |
VIP | 0 |
好人卡 | 11 |
积分 | 387 |
经验 | 242285 |
最后登录 | 2025-4-4 |
在线时间 | 5691 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 38706
- 在线时间
- 5691 小时
- 注册时间
- 2006-11-10
- 帖子
- 6606
|
塞main前试试
- module Caidao
- A_UNDEAD = 10086 #回光返照的状态ID
- end
- class Game_Battler
- def dead?
- return (@hp == 0 and not @immortal and !state?(Caidao::A_UNDEAD))
- end
- def exist?
- return (not @hidden and (@hp > 0 or @immortal or state?(Caidao::A_UNDEAD)))
- end
- def restriction
- restriction_max = 0
- for i in @states
- next if state?(Caidao::A_UNDEAD) and $data_states[i].zero_hp
- if $data_states[i].restriction >= restriction_max
- restriction_max = $data_states[i].restriction
- end
- end
- return restriction_max
- end
- end
- class Game_Party
- alias oxoxox all_dead?
- def all_dead?
- return false if @actors.any? {|i| i.state?(Caidao::A_UNDEAD)}
- oxoxox
- end
- end
复制代码 |
评分
-
查看全部评分
|