赞 | 159 |
VIP | 0 |
好人卡 | 0 |
积分 | 263 |
经验 | 0 |
最后登录 | 2024-11-27 |
在线时间 | 5364 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 26333
- 在线时间
- 5364 小时
- 注册时间
- 2016-3-8
- 帖子
- 1657
|
本帖最后由 alexncf125 于 2022-5-21 13:37 编辑
锁定行动回数为一:- class Game_Battler < Game_BattlerBase
- alias lock_action_times_to_one make_action_times
- def make_action_times
- self.state?(状态ID) ? 1 : lock_action_times_to_one
- end
- end
复制代码
无法自动回复:- class Game_Battler < Game_BattlerBase
- alias cannot_auto_regenerate regenerate_all
- def regenerate_all
- cannot_auto_regenerate unless self.state?(状态ID)
- end
- end
复制代码 |
|