Does Crit Mult do anything for Summons?
Posted: Wed Feb 21, 2018 1:56 pm
I know summons can crit, but I was wondering if they get more buffs if your crit mult is higher?
Everything about ToME
https://forums.te4.org/
Code: Select all
str=15 + (fake and mp or self:mindCrit(mp)) * 2 * self:combatTalentScale(t, 0.2, 1, 0.75) + self:combatTalentScale(t, 2, 10, 0.75),
dex=15 + (fake and mp or self:mindCrit(mp)) * 2 * self:combatTalentScale(t, 0.2, 1, 0.75) + self:combatTalentScale(t, 2, 10, 0.75),
The construction is a variant on the C-like ternary operator, and the actual statement is:Snarvid wrote:Thanks Micbran!
I don't know what to make of "fake and mp"
Code: Select all
fake and mp or self:mindCrit(mp)