...and Protect me from Harm: Difference between revisions

From Path of Exile 2 Wiki
Jump to navigation Jump to search
(correct and clarify information)
No edit summary
Line 5: Line 5:
'''...and Protect me from Harm''' is a notable [[Ascendancy passive skill]] for the [[Invoker]] that includes your [[evasion]] rating into the [[Physical]] damage reduction (PDR) calculation, but also gives 40% less evasion rating, this reduction also affects the evasion used for the Physical damage reduction calculation.
'''...and Protect me from Harm''' is a notable [[Ascendancy passive skill]] for the [[Invoker]] that includes your [[evasion]] rating into the [[Physical]] damage reduction (PDR) calculation, but also gives 40% less evasion rating, this reduction also affects the evasion used for the Physical damage reduction calculation.


To be precise the [[evasion]] rating is added together with your armor for PDR <b>before</b> PDR calculation so the pseudo code formula is <pre>pdr = pdrFunction(hit_damage, evasion_rating + armour)</pre>
The {{c|mod|#% less Evasion Rating}} modifier and all other evasion rating modifiers apply first, and then the final evasion rating value is added to the armour value when calculating PDR: <pre>pdr = pdrFunction(hit_damage, evasion_rating + armour)</pre>
 
This does not affect the actual armour value, however, such as through [[Iron Reflexes]].


==Version history==
==Version history==

Revision as of 19:42, 13 December 2024


[citation needed]

...and Protect me from Harm is a notable Ascendancy passive skill for the Invoker that includes your evasion rating into the Physical damage reduction (PDR) calculation, but also gives 40% less evasion rating, this reduction also affects the evasion used for the Physical damage reduction calculation.

The #% less Evasion Rating modifier and all other evasion rating modifiers apply first, and then the final evasion rating value is added to the armour value when calculating PDR:

pdr = pdrFunction(hit_damage, evasion_rating + armour)

This does not affect the actual armour value, however, such as through Iron Reflexes.

Version history

Version Changes
0.1.0
  • Introduced to the game.