执子之手,与子偕老 天邈汉化组翻译【中级】 暗物质 外 法◆聖輝·冰帝◇銀 狼
- UID
- 1473807
- 主题
- 6
- 阅读权限
- 100
- 帖子
- 13293
- 精华
- 1
- 积分
- 7557
- 金钱
- 52903
- 荣誉
- 71
- 人气
- 6
- 在线时间
- 684 小时
- 评议
- 0

- 帖子
- 13293
- 精华
- 1
- 积分
- 7557
- 金钱
- 52903
- 荣誉
- 71
- 人气
- 6
- 评议
- 0
|
龙箭的修正,现在的伤害计算如下:
local k = AU.attack( attacker ) - AU.defence( receiver )
local k2 = AU.attack( attacker )
if k>=0 and k<60 then
damage = damage /(1+k*0.0333)
end
if k>=60 then
damage = damage /3
end
if k<0 and k>=-60 then
damage = damage * (1-k*0.0333)
end
if k<-60 then
damage = damage / 3
end
if damage<0 then
damage=0
end
if k2<60 then
damage = damage *(1+k2*0.0333)
end
if k2>=60 then
damage = damage *3
end
end
龙箭的伤害计算被大幅修正,从最高12倍伤害减少到最高9倍.
造成最大伤害的条件从己方攻击低于敌方防御30变为攻击正好等于敌方防御的一半,此时伤害效果为基础技能伤害x(1+denfens/60(max 2))x(1+attack/30(max 2)).
龙箭仍然是巨人杀手,5级生物防御43-56,所以要发挥龙箭对5级生物的伤害效果弓手的攻击应该处于21-28之间. |
|