Leech: Difference between revisions

From Path of Exile Wiki
Jump to navigation Jump to search
>TheFrz
mNo edit summary
>TheFrz
mNo edit summary
(No difference)

Revision as of 18:25, 19 July 2016

"Life Leech" redirects here. For the support gem, see Life Leech Support. For the passive skill, see Life Leech (passive skill).
"Mana Leech" redirects here. For the support gem, see Mana Leech Support.

Leech recovers an amount of life, mana or energy shield over time, relative to the damage inflicted on an enemy. Leech cares about the damage taken by the enemy, not the amount of life removed.[1][2]

Mechanics

In The Awakening expansion the leech mechanics were changed with the goal to make it harder to leech against a single enemy. Before, Life/Mana was recovered at a constant rate, without taking into account how many enemies were hit by the skill. The leech mechanic was then changed so that a new leech instance was created per hit. These instances can stack meaning a single hit against multiple targets will grant multiple instances, as will multiple hits against a single target.[3]

A Leech instance is calculated by taking a percent of the damage done in each hit according to the #% Damage Leeched as Life (or Mana) stat then healing the character by that amount, the speed in which an instance of leech heals character is specified by the leech recovery rate, the default leech recovery rate is 2% of the character's max health per second, which can be increased by #% increased (or reduced) Life/Mana Leeched per second modifiers. There is a maximum amount of leech recovery rate per second which is by default 20% of maximum health, this can be increased by #% of maximum Life/Mana per second to maximum Life/Mana Leech rate modifiers.[4]

Each hit against each target creates a new instance of leech which will all heal the character simultaneously until the maximum leech recovery rate per second is reached.[5]

Recovery rate

The total leech recovery rate (accounting for all instances of leech) is given by

total leech recovery rate = max life * instances of leech * 0.02 * (1 + increased leech per second)

where max life can also be the character's maximum mana for mana leech. Increased leech per second is the sum of all the #% increased (or reduced) Life/Mana Leeched per second modifiers.

There is an upper limit of the leech recovery rate which is defined as 20% of the character's maximum health. This maximum is increased by any #% of maximum Life/Mana per second to maximum Life/Mana Leech rate modifiers.

The total amount of active leech instances allowed that will not exceed the maximum recovery rate is

max instances = (0.2 + increased max leech rate) / (0.02 * (1 + increased leech per second))
Derivation of max instances
Find the amount of instances that gives the maximum leech recovery rate:
max recovery rate = recovery rate
max life * instances * 0.02 * (1 + increased leech per second) = max instances * (0.2 + increased max leech rate)

setting max instances to instances and solving yields the total amount of active leech instances allowed

max instances = instances = (0.2 + increased max leech rate) / (0.02 * (1 + increased leech per second))

Leech duration

The leech recovery duration is how long in seconds a leech instance has to last to recover the entirely of its life pool.[6] It can be found by dividing the percent damage inflicted that is leeched by the leech recovery rate.

duration = damage inflicted * % attack damage leeched / (max health * 0.02)

Note that the leeched damage is always rounded down to nearest integer, which can be noticeable for skills that do low amounts of damage quickly.

Modifiers

Modifiers that alter the leech recovery rate increase the value of Life/Mana you're gaining per second for each leech effect. However, they do not affect the duration, tdur, of the leech effects, meaning that more total life/mana will be gained from each leech instance as a result.[3][6] This also implies that by increasing the Life/Mana Leeched per second gives a larger total of life leeched compared to Vaal Pact.

There are only a couple of ways for these factors to be altered, besides the passive tree:[3][7]

  • The of Smothering modifier for maps slows life and mana leech recovery rate by 50%.
  • For life leech by a skill supported by the Module Error: No skills found with q_where = skill.active_skill_name="Life Leech" gem.
  • Vorici's master modifier also offers #% increased Life Leeched per second.

Examples

When using skills such as Module Error: Too many skills found with q_where = skill.active_skill_name="Dual Strike". Please choose only one of the following ids:
AzmeriDualStrikeDemonDualStrike - N/A (page)
DualStrikeRoyale - (50-77)% increased Critical Strike Chance, +(0-0.1) metres to Melee Strike Range, 100% more Critical Strike Chance against Enemies that are on Full Life, +30% more Damage with Hits and Ailments against Enemies that are on Full Life (page)
linked with Module Error: No skills found with q_where = skill.active_skill_name="Melee Splash" several enemies can be hit at once. The leech rate will vary considerably depending on how many enemies are hit. The character used in the following examples have the following stats:

p = 5000 maximum life.
d = 1000 damage taken by the enemy.
l = 1% life leech.
1 enemy hit
n = 1 leech instance/enemy.
m = 0% increased Life Leeched per second.
mmax = 0% of maximum Life per second to maximum Life Leech rate.

The recovery rate is:

r = n * p * q * (1 + m) = 1 * 5000 * 0.02 * (1 + 0) = 100 HP/sec

Make sure that the recovery rate doesn't exceed the maximum recovery rate which is

rmax = p * (qmax + mmax) = 5000 * (0.2 + 0) = 1000 HP/sec

The limit has not been exceeded, meaning that no substitution is necessary.

The time it takes to recover the total amount of life leeched is

tdur = d * l / (p * q) = 1000 * 0.01 / (5000 * 0.02) = 0.1 seconds

which gives the total life leeched

HP(tdur) = r * tdur = 100 * 0.1 = 10 Life
5 enemies hit at once
n = 5 leech instances/enemies.
m = 0% increased Life Leeched per second.
mmax = 0% of maximum Life per second to maximum Life Leech rate.

The recovery rate is:

r = n * p * q * (1 + m) = 5 * 5000 * 0.02 * (1 + 0) = 500 HP/sec

Make sure that the recovery rate doesn't exceed the maximum recovery rate which is

rmax = p * (qmax + mmax) = 5000 * (0.2 + 0) = 1000 HP/sec

The limit has not been exceeded, meaning that no substitution is necessary.

The time it takes to recover the total amount of life leeched is

tdur = d * l / (p * q) = 1000 * 0.01 / (5000 * 0.02) = 0.1 seconds

which gives the total life leeched

HP(tdur) = r * tdur = 500 * 0.1 = 50 Life
11 enemies hit at once
n = 11 leech instances/enemies.
m = 0% increased Life Leeched per second.
mmax = 0% of maximum Life per second to maximum Life Leech rate.

The recovery rate is:

r = n * p * q * (1 + m) = 11 * 5000 * 0.02 * (1 + 0) = 1100 HP/sec

Make sure that the recovery rate doesn't exceed the maximum recovery rate which is

rmax = p * (qmax + mmax) = 5000 * (0.2 + 0) = 1000 HP/sec

The limit has been exceeded, therefore the recovery rate needs to be changed to r = 1000 HP/sec.

The time it takes to recover the total amount of life leeched is

tdur = d * l / (p * q) = 1000 * 0.01 / (5000 * 0.2) = 0.1 seconds

which gives the total life leeched

HP(tdur) = r * tdur = 1000 * 0.1 = 100 Life

Marauder dual strike
 
For example, let's take a marauder with dual strike skill.
p = 5577 life total
L = 3.2% base phys leech (gear and passives)
m = 93% Inc. leech per second
Mmax+13% of max life per second to max life leech rate 
d = 1400-2500 single attack physical damage (I used MINIMUM main hand damage)
n = number of enemies (1 for this example)
r = recovery rate
Rmax = cap for recovery rate
Tdur = Leech duration
APS = attacks per second

(Variables left in for ease of use)

Recovery rate
r215.27 = p5577 * n1 * q0.02 * (1 + m0.93)

Recovery rate max cap
Rmax 1187.90 = p5577 * (Qmax0.2 + Mmax 0.013)

Leech duration
MINIMUM Tdur 0.40 = d1400 * L0.032 / (p5577 * 0.02)
MAXIMUM Tdur 0.72 = d2500 * L0.032 / (p5577 * 0.02)

Total Leech Figures
86.46 leech per hit per per enemy MINIMUM = r215.27 * Tdur0.40
154.4 leech per hit per per enemy MAXIMUM = r215.27 * Tdur0.72 

911.33 to 1627.376 leeched per second per enemy = APS10.54 x 86.464 and then x 154.4 for min/max leech
4556.65 to 8136.88 leeched per 5 enemies per second
9113.3 to 16273.76 leeched per 10 enemies per second

Types of Leech

There are several types of leech that specialize on certain types of skills. Some leech types only work for attacks, others only works with elemental damage or all sources of physical damage. If there is specialization it will be defined in the modifier.

Generally the leech modifiers follow this template:

#% of X Y Damage Z Leeched as Life/Mana

Where X can be:

  • Physical/Fire/Cold/Lightning/Elemental/Chaos

Y can be:

  • Attack/Spell

and Z can be:

Note that if X, Y or Z are not specified it means that it applies to all those types.

Examples

  • Module Error: No skills found with q_where = skill.active_skill_name="Life Leech" and Module Error: No skills found with q_where = skill.active_skill_name="Mana Leech" has the mod #% of Damage Leeched as Life/Mana implying it works for all types of skills that hit a target.
  • Module Error: Too many skills found with q_where = skill.active_skill_name="Warlord's Mark". Please choose only one of the following ids:
    MonsterWarlordsMark - Base duration is 4.00 seconds, Cursed enemies grant 2% Life Leech when Hit by Attacks, Cursed enemies grant 2% Mana Leech when Hit by Attacks, Cursed enemies have a 100% chance to grant an Endurance Charge when slain, Hits against Cursed Enemies have 40% chance to double Stun Duration (page)
    ArchnemesisWarlordsMark - Base duration is 4.00 seconds, Cursed enemies grant 2% Life Leech when Hit by Attacks, Cursed enemies grant 2% Mana Leech when Hit by Attacks, Cursed enemies have a 100% chance to grant an Endurance Charge when slain, Hits against Cursed Enemies have 40% chance to double Stun Duration (page)
    also has the mod #% of Damage Leeched as Life/Mana, granted the enemy already is cursed.
  • The notable passive Soul Raker grants the mod #% of Physical Damage Dealt with Claws Leeched as Life specifying it works for only Physical damage dealt by a Claw, this implies that this passive only works for Attacks because Spells are separate from the weapon.
  • The notable passive Lust for Carnage grants the mod #% of Physical Attack Damage Leeched as Life specifying it applies to Physical Attacks. All types of weapons can make use of this notable, however not Spells.

Skill gems

{{#ask:

Concept:Skill gems
|~mana_leech*
|?Has name
|?Has infobox HTML
|?Has support gem letter HTML
|?Has level requirement
|?Has strength percentage
|?Has intelligence percentage
|?Has dexterity percentage
|intro=A list of skill gems that are relevant to leech.
|limit=1000
|link=none
|format=template
|introtemplate=SMW item table/skill gem/intro
|template=SMW item table/skill gem
|outrotemplate=SMW item table/skill gem/outro
|named args=yes
|userparam=level=yes, int=yes, dex=yes, str=yes
|sort=Has primary attribute, Has name

}}

Passive skills

There are passive skills that grant passive leech or bonuses to leech.

Attack Damage Leeched as Life

These passive skills grant passive life leech when dealing any damage with a weapon. Template:Passive table

Template:Ascendancy passive table

Physical Attack Damage Leeched as Life

These passive skills grant passive life leech when dealing physical damage with a weapon. Template:Passive table

Increased Life Leeched per second

These passive skills increase the rate of life gained while leeching. Template:Passive table

Template:Ascendancy passive table

Increase to Maximum Life Leech rate

These passive skills increase the maximum life leech rate. Template:Passive table

Template:Ascendancy passive table

Minion Life Leech

These passive skills grant life leech for minions. Template:Passive table

Modifiers

These keystone passives change the way Life Leech works, but do not directly enhance Life Leech. These effects do not apply to Mana Leech.

The Vaal Pact Keystone will allow life leech to apply immediately at the cost of losing life regeneration. Ghost Reaver applies life leech to energy shield instead of life. Endless Hunger causes Life Leech effects to not get removed when the user reaches full life. Template:Passive table

Template:Ascendancy passive table

Attack Damage Leeched as Mana

These passive skills grant passive mana leech when dealing any damage with a weapon. Template:Passive table

Physical Attack Damage Leeched as Mana

These passive skills grant passive mana leech when dealing physical damage with a weapon. Template:Passive table

Increased Mana Leeched per second

These passive skills increase the rate of mana gained while leeching. Template:Passive table

Increase to Maximum Mana Leech rate

These passive skills increase the maximum mana leech rate. Template:Passive table

Non-Attack Damage Leech

These items and abilities grant leech from damage sources besides attacks.

Items

  • All damage:
    • Module Error: No skills found with q_where = skill.active_skill_name="Life Leech", Module Error: No skills found with q_where = skill.active_skill_name="Mana Leech"
    • Module Error: Too many skills found with q_where = skill.active_skill_name="Warlord's Mark". Please choose only one of the following ids:
      MonsterWarlordsMark - Base duration is 4.00 seconds, Cursed enemies grant 2% Life Leech when Hit by Attacks, Cursed enemies grant 2% Mana Leech when Hit by Attacks, Cursed enemies have a 100% chance to grant an Endurance Charge when slain, Hits against Cursed Enemies have 40% chance to double Stun Duration (page)
      ArchnemesisWarlordsMark - Base duration is 4.00 seconds, Cursed enemies grant 2% Life Leech when Hit by Attacks, Cursed enemies grant 2% Mana Leech when Hit by Attacks, Cursed enemies have a 100% chance to grant an Endurance Charge when slain, Hits against Cursed Enemies have 40% chance to double Stun Duration (page)
    • Berek's GripBerek's Grip
      Two-Stone Ring
      Requires Level 20+(12-16)% to Cold and Lightning Resistances(25-30)% increased Cold Damage
      Adds 1 to (50-70) Lightning Damage to Spells and Attacks
      +(30-40) to maximum Life
      1% of Damage Leeched as Life against Shocked Enemies
      1% of Damage Leeched as Energy Shield against Frozen Enemies
      "Berek hid from Storm's lightning wrath
      In the embrace of oblivious Frost
      Repelled by ice, blinded by blizzards
      Storm raged in vain
      While Berek slept."
      - Berek and the Untamed
      (against frozen/shocked enemies)
    • The HarvestThe Harvest
      Jasper Chopper
      Two Handed Axe
      Physical Damage: (127.6-139.2) to (200.2-218.4)
      Critical Strike Chance: 5.00%
      Attacks per Second: 1.15
      Weapon Range: 1.3 metres
      Requires Level 37, 100 Str, 29 Dex(120-140)% increased Physical Damage
      1.2% of Damage Leeched as Life on Critical Strike
      3% increased Global Critical Strike Chance per Level
      Gain a Flask Charge when you deal a Critical Strike
      Let it grow and gather inside them,
      Let it flow through their veins.
      Don't waste a drop.
      (on critical strike)
    • Trolltimber SpireTrolltimber Spire
      Cedar Tower Shield
      Chance to Block: 25%
      Armour: (216-282)
      Movement Speed: -3%
      Requires Level 17, 47 Str+(20-30) to maximum Life(130-150)% increased Armour
      +(40-60) to maximum Life
      You and your Totems Regenerate 0.5% of Life per second for each Summoned Totem
      15% increased Area of Effect for Skills used by Totems
      0.5% of Damage dealt by your Totems is Leeched to you as Life
      The problem with working fresh trolltimber:
      by the time you've carved out one end,
      the other has sprouted fresh roots!
      (to totems only)
    • Valako's SignValako's Sign
      Topaz Ring
      Requires Level 38+(20-30)% to Lightning Resistance40% increased Damage with Hits against Shocked Enemies
      20% increased Lightning Damage
      +(20-40) to maximum Mana
      1% of Damage Leeched as Life against Shocked Enemies
      25% chance to Shock
      A gift from Valako,
      appointing Kiloava as the Herald of War.
      A title Kaom claimed when he ended Kiloava's bloodline.
      (against shocked enemies)
  • Physical damage:
    • The Blood ReaperThe Blood Reaper
      Headsman Axe
      Two Handed Axe
      Physical Damage: (170.8-183) to (257.6-276)
      Critical Strike Chance: 5.00%
      Attacks per Second: 1.30
      Weapon Range: 1.3 metres
      Requires Level 45, 99 Str, 57 Dex(180-200)% increased Physical Damage
      +100 to maximum Life
      Regenerate 20 Life per second
      1% of Physical Attack Damage Leeched as Life
      50% increased Mana Cost of Skills
      50% chance to cause Bleeding on Hit
      To cease the flow of blood is to
      choke the rain in the very clouds.
      Both life and land feel the thirst.
    • Module Error: More than one result found for item using search term "item_name = Doryani's Invitation". Try using the page parameter instead (variant)
  • Fire damage:
    • Module Error: More than one result found for item using search term "item_name = Doryani's Invitation". Try using the page parameter instead (variant)
  • Cold damage:
    • Module Error: More than one result found for item using search term "item_name = Doryani's Invitation". Try using the page parameter instead (variant)
  • Lightning damage:
    • Module Error: More than one result found for item using search term "item_name = Vessel of Vinktar". Try using the page parameter instead
    • Module Error: More than one result found for item using search term "item_name = Doryani's Invitation". Try using the page parameter instead (variant)
  • Elemental damage:
  • Chaos damage:
    • Atziri's PromiseAtziri's Promise
      Amethyst Flask
      Lasts 6.50 Seconds
      Consumes 35 of 65 Charges on use
      +35% to Chaos Resistance
      Requires Level 68Gain (5-8)% of Elemental Damage as Extra Chaos Damage during effect
      2% of Chaos Damage Leeched as Life during Effect
      Gain (5-8)% of Physical Damage as Extra Chaos Damage during effect
      "Death needs not your understanding. It needs only your loyalty."
      - Atziri, Queen of the Vaal
      Right click to drink. Can only hold charges while in belt. Refills as you kill monsters.
    • Broken FaithBroken Faith
      Archon Kite Shield
      Chance to Block: 12%
      Armour: (156-179)
      Energy Shield: (32-37)
      Movement Speed: -3%
      Requires Level 68, 85 Str, 85 Int+12% to all Elemental Resistances0.4% of Chaos Damage Leeched as Life
      -10% Chance to Block
      100% increased Global Armour while you have no Energy Shield
      You have Unholy Might while you have no Energy Shield
      Create Profane Ground instead of Consecrated Ground
      Be not blinded by the light.
    • Hungry AbyssHungry Abyss
      Viridian Jewel
      Limited to: 1With 5 Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage insteadCorruptedDarkness can never be sated.Place into an allocated Jewel Socket on the Passive Skill Tree. Right click to remove from the Socket.
      (override)

Ascendancy passive skills

Template:Ascendancy passive table

Related effects

These effects grants bonuses based on Leech:

Items

Passive Skills

Template:Passive table

Template:Ascendancy passive table

Immunity to leech

A player can become immune to being life leeched from by enemies through allocating the Bloodless notable passive skill.

Template:Passive table

Immunity can also be achieved by equipping certain unique items.

Lua error in Module:Item_table at line 1971: bad argument #2 to 'format' (string expected, got nil).

Cannot Leech

Certain unique items prevent the user from leeching life and/or mana.

Lua error in Module:Item_table at line 1971: bad argument #2 to 'format' (string expected, got nil).

References

  1. GGG_Mark (August 6, 2013). "Evasion and Damage Reflection questions". Path of Exile forum. Retrieved November 17, 2015.
  2. GGG_Mark (July 1, 2013). "Explosive Arrow". Path of Exile forum. Retrieved November 17, 2015.
  3. 3.0 3.1 3.2 GGG_Neon (May 18, 2015). "Upcoming changes to Leech Thread". Path of Exile Forum. Retrieved July 20, 2015.
  4. https://www.pathofexile.com/forum/view-thread/1431325/page/1#p11773119
  5. GGG_Mark (June 20, 2015). "Vitality Void: Leech Cluster Thread". Path of Exile subreddit. Retrieved July 20, 2015.
  6. 6.0 6.1 GGG_Mark (October 1, 2015). "Life leech (wiki)". Path of Exile forum. Retrieved October 12, 2015.
  7. Mark_GGG (March 4, 2014). "Leech: GGG clarify please!". Official Path of Exile Forums. Retrieved March 6, 2014.