Author | Knockback |
how come my ogres dont perform knockback
ive had enough chances but is there something like the hit/miss ratio or is it knockback/no knockback |
its random
and while your level(racial) plays important role in hero knock back, the hp amount plays an importan role in troop knock back formulae is i think 5%+ (3%)if your creature has more hp and 5%+(-3%) if your creature has less hp
there is also some factor for tier level |
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. |
If attHP >= tarHP, then
_Probability = 25% + 3% * (attHP/tarHP);
else
_Probability = 25% - 3% * (tarHP/attHP),
thats what i meant thanks takeister |
QATC |
closed by Lady Takesister (2009-11-08 04:48:04) |
---|