Page 1 of 1
Beyond the fresh calculation
Posted: Tue Nov 15, 2016 2:29 pm
by fateriddle
It says with Beyond the fresh on, all damage and accuracy calculation is based on wil and cun instead of str and dex.
So my question is, with Beyond the fresh, is there any use to invest in str and dex? Does cun increase accuracy instead of dex, and wil increase physical power instead of str?
Re: Beyond the fresh calculation
Posted: Tue Nov 15, 2016 3:39 pm
by Radon26
as far as i am aware, it only updates damage mods on the weapon, and from which stat the acc is taken.
i am fairly certain it does not affect PP.
will make an edit in the next 5 min.
edit, i was unable to find it. it makes a reference to elsewhere.
will try to find where it goes, unless someone else answers it first.
edit
think i found... something
Code: Select all
function _M:combatAttack(weapon, ammo)
local stats
if self:attr("use_psi_combat") then stats = (self:getCun(100, true) - 10) * (0.6 + self:callTalent(self.T_RESONANT_FOCUS, "bonus")/100)
elseif weapon and weapon.wil_attack then stats = self:getWil(100, true) - 10
else stats = self:getDex(100, true) - 10
end
local d = self:combatAttackBase(weapon, ammo) + stats
if self:attr("dazed") then d = d / 2 end
if self:attr("scoured") then d = d / 1.2 end
return self:rescaleCombatStats(d)
and i have no idea where to go from there.
Re: Beyond the fresh calculation
Posted: Wed Nov 16, 2016 4:52 am
by jenx
STR will boost physical power, which will boost damage somewhat