Necro Power Vacuum return bug?

Find any bug ? Report it !
Locked
User avatar
LeGrimm
Soldier
Soldier
Posts: 53
Joined: Sat Jul 30, 2022 4:20 pm

Necro Power Vacuum return bug?

When Casting the Necromancer Power Vaccum abilities. the tooltip stats 50% return of damage as power. Based on that I should be seeing a much higher return on power. I'm only getting about 14-15% return. Included is a screen capture of using the ability Puissance Vacuum I hit for 82 (+18) twice. with both hit returning 11 power each. The cast costs 8 power. Thus netting me a return of 3 extra power. Even if the delved tooltip 50% would be 22.5 power off the tooltips 45 dmg.
necrovaccumdmg.png
You do not have the required permissions to view the files attached to this post.
User avatar
Karen
Developer
Developer
Posts: 1932
Joined: Thu May 19, 2022 9:14 pm

Re: Necro Power Vacuum return bug?

Power gain is capped

Code: Select all

powerGain = Math.Min(powerGain, (int)(n.Level * 1.1d));
You are not supposed to drain cap damage from low level mobs
Locked