Beyond the fresh calculation

Everything about ToME 4.x.x. No spoilers, please

Moderator: Moderator

Post Reply
Message
Author
fateriddle
Halfling
Posts: 86
Joined: Thu Jul 16, 2015 4:46 am

Beyond the fresh calculation

#1 Post 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?

Radon26
Sher'Tul
Posts: 1439
Joined: Mon Jun 23, 2014 11:50 am

Re: Beyond the fresh calculation

#2 Post 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.

jenx
Sher'Tul Godslayer
Posts: 2263
Joined: Mon Feb 14, 2011 11:16 pm

Re: Beyond the fresh calculation

#3 Post by jenx »

STR will boost physical power, which will boost damage somewhat
MADNESS rocks

Post Reply