Forums-->Queries and help-->
Author | Ogres/Ogre Magis |
What is the rate of knockback for both of them? | I have absolutly no idea, but it depends on the stacksize - just like everything else :), but quite annying when you will take retial with them and they then knockback ;) | Chance for ability to trigger
If attHP >= tarHP, then
_Probability = 25% + 3% * (attHP/tarHP);
else
_Probability = 25% - 3% * (tarHP/attHP),
whence:
» attHP is the total leftover HP of the stack that's using the ability;
» tarHP is "-"-" of the target stack;
» Trigger probability does not exceed the bound of [5%;75%];
» The moments to calculate the probability differ depending on the ability type.
-> For Stun and Knocking shot, the probability is calculated using HP's of stacks *before* the actual attack.
-> For Knockback and Fear Attack, the calculation occurs *after* the attack and before target's retaliation.
» The only ability that can trigger on retaliation counterstrike is Knockback. |
This topic is long since last update and considered obsolete for further discussions. Back to topics list
|