fix: Cleans up some comments and spell code (#1120)
This commit is contained in:
parent
56c97ca84a
commit
fa3515f930
44 changed files with 338 additions and 469 deletions
|
|
@ -1900,7 +1900,6 @@ namespace Server.Items
|
|||
var lifeLeech = 0;
|
||||
var stamLeech = 0;
|
||||
var manaLeech = 0;
|
||||
int wraithLeech;
|
||||
|
||||
if ((int)(AosWeaponAttributes.GetValue(attacker, AosWeaponAttribute.HitLeechHits) * propertyBonus) >
|
||||
Utility.Random(100))
|
||||
|
|
@ -1935,7 +1934,7 @@ namespace Server.Items
|
|||
if (context?.Type == typeof(WraithFormSpell))
|
||||
{
|
||||
// Wraith form gives an additional 5-20% mana leech
|
||||
wraithLeech = 5 + (int)(15 * attacker.Skills.SpiritSpeak.Value / 100);
|
||||
var wraithLeech = 5 + (int)(15 * attacker.Skills.SpiritSpeak.Value / 100);
|
||||
|
||||
// Mana leeched by the Wraith Form spell is actually stolen, not just leeched.
|
||||
defender.Mana -= AOS.Scale(damageGiven, wraithLeech);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue