赞 | 0 |
VIP | 270 |
好人卡 | 34 |
积分 | 0 |
经验 | 24234 |
最后登录 | 2013-12-20 |
在线时间 | 976 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 47
- 在线时间
- 976 小时
- 注册时间
- 2011-4-30
- 帖子
- 860
|
Game_Battler 1里改,举个例子- #--------------------------------------------------------------------------
- # ● 获取 MaxHP
- #--------------------------------------------------------------------------
- def maxhp
- n = [[base_maxhp + @maxhp_plus, 1].max, 999999].min
- for i in @states
- n *= $data_states[i].maxhp_rate / 100.0
- end
- n = [[Integer(n), 1].max, 999999].min
- return n
- end
复制代码 n *= $data_states.maxhp_rate / 100.0 这个是默认公式,可以在下面添加额外内容,比如第20号状态,你想在数据库的200%基础上再乘2倍,然后再加60点
if i == 20
n *= 2
n +=60
end- def maxhp
- n = [[base_maxhp + @maxhp_plus, 1].max, 999999].min
- for i in @states
- n *= $data_states[i].maxhp_rate / 100.0
- if i == 20
- n *= 2
- n +=60
- end
- end
- n = [[Integer(n), 1].max, 999999].min
- return n
- end
复制代码 |
评分
-
查看全部评分
|