赞 | 0 |
VIP | 13 |
好人卡 | 65 |
积分 | 1 |
经验 | 58644 |
最后登录 | 2017-10-23 |
在线时间 | 1281 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 1281 小时
- 注册时间
- 2006-8-27
- 帖子
- 590
|
本帖最后由 wbsy8241 于 2013-8-31 23:21 编辑
atk = Integer( [attacker.atk *(0.6 + ((attacker.str - self.pdef)/attacker.str)) - rand(self.pdef/5),attacker.atk *0.1].max)
atk = Integer( [134 *(0.6 + ((114 - 0)/114)) - rand(0/5),134 *0.1].max)
atk = Integer( [134 *(0.6 + 1) - (0~1), 13.4].max)
atk = Integer( [214.4 - (0~1), 13.4].max)
atk = Integer( [214.4~213.4, 13.4].max)
atk = 213~214
self.damage = rand(attacker.str/5) + atk
self.damage = rand(114/5) + 213~214
self.damage = rand(22) + 213~214
self.damage = 0~21 + 213~214
self.damage = 213~235
amp = [self.damage.abs * 15 / 100, 1].max
amp = [213~235 * 15 / 100, 1].max
amp = [31~35, 1].max
amp = 31~35
self.damage += rand(amp+1) + rand(amp+1) - amp
self.damage += rand(31~35+1) + rand(31~35+1) - 31~35
self.damage += 0~35 + 0~35 - 0~34
self.damage += -34~70
self.damage = 213~235 + (-34~70)
self.damage = 179~305
整数间运算得整数 |
评分
-
查看全部评分
|