mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
Implement spell formula 137
This is only used in the BER AA Desperation
This commit is contained in:
parent
11ce399e0d
commit
85e1518856
@ -1,5 +1,8 @@
|
|||||||
EQEMu Changelog (Started on Sept 24, 2003 15:50)
|
EQEMu Changelog (Started on Sept 24, 2003 15:50)
|
||||||
-------------------------------------------------------
|
-------------------------------------------------------
|
||||||
|
== 09/16/2014 ==
|
||||||
|
demonstar55: Implement spell formula 137 (BER AA Desperation)
|
||||||
|
|
||||||
== 09/15/2014 ==
|
== 09/15/2014 ==
|
||||||
Kayen: Nimbus effects will now be reapplied after zoning and will be removed when associated buff fades.
|
Kayen: Nimbus effects will now be reapplied after zoning and will be removed when associated buff fades.
|
||||||
|
|
||||||
|
|||||||
@ -3166,6 +3166,10 @@ snare has both of them negative, yet their range should work the same:
|
|||||||
result = MakeRandomInt(ubase, abs(max));
|
result = MakeRandomInt(ubase, abs(max));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 137: // used in berserker AA desperation
|
||||||
|
result = ubase - (ubase * (GetHPRatio() / 100.0f));
|
||||||
|
break;
|
||||||
|
|
||||||
//these are used in stacking effects... formula unknown
|
//these are used in stacking effects... formula unknown
|
||||||
case 201:
|
case 201:
|
||||||
case 203:
|
case 203:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user