赞 | 153 |
VIP | 10 |
好人卡 | 39 |
积分 | 93 |
经验 | 146191 |
最后登录 | 2024-5-6 |
在线时间 | 2504 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 9280
- 在线时间
- 2504 小时
- 注册时间
- 2011-5-20
- 帖子
- 15389
|
Game_Battler 1里面可以找到这一段- #--------------------------------------------------------------------------
- # ● 获取力量
- #--------------------------------------------------------------------------
- def str
- n = [[base_str + @str_plus, 1].max, 999].min
- for i in @states
- n *= $data_states[i].str_rate / 100.0
- end
- n = [[Integer(n), 1].max, 999].min
- return n
- end
复制代码 以及- #--------------------------------------------------------------------------
- # ● 设置力量
- # str : 新的力量
- #--------------------------------------------------------------------------
- def str=(str)
- @str_plus += str - self.str
- @str_plus = [[@str_plus, -999].max, 999].min
- end
复制代码 把999改成10000 |
|