Core/Auras: Implemented SPELL_AURA_TRIGGER_SPELL_ON_HEALTH_PCT
Port From (https://github.com/TrinityCore/TrinityCore/commit/b221f4b37251db2206dd14d46c00f1b6f1f16480)
This commit is contained in:
@@ -545,6 +545,18 @@ namespace Framework.Constants
|
||||
RealOrReapplyMask = (Reapply | Real)
|
||||
}
|
||||
|
||||
public enum AuraTriggerOnPowerChangeDirection
|
||||
{
|
||||
Gain = 0,
|
||||
Loss = 1
|
||||
}
|
||||
|
||||
public enum AuraTriggerOnHealthChangeDirection
|
||||
{
|
||||
Above = 0,
|
||||
Below = 1,
|
||||
}
|
||||
|
||||
// Diminishing Returns Types
|
||||
public enum DiminishingReturnsType
|
||||
{
|
||||
@@ -578,10 +590,4 @@ namespace Framework.Constants
|
||||
Level4 = 3,
|
||||
TauntImmune = 4
|
||||
}
|
||||
|
||||
public enum AuraTriggerOnPowerChangeDirection
|
||||
{
|
||||
Gain = 0,
|
||||
Loss = 1
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user