TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
spell_dk_avoidance_passive::spell_dk_avoidance_passive_AuraScript Class Reference

Private Member Functions

 PrepareAuraScript (spell_dk_avoidance_passive_AuraScript)
 
bool Load () override
 
void CalculateAvoidanceAmount (AuraEffect const *, int32 &amount, bool &)
 
void Register () override
 

Additional Inherited Members

- Public Member Functions inherited from AuraScript
 AuraScript ()
 
bool _Validate (SpellInfo const *entry) override
 
bool _Load (Aura *aura)
 
void _PrepareScriptCall (AuraScriptHookType hookType, AuraApplication const *aurApp=NULL)
 
void _FinishScriptCall ()
 
bool _IsDefaultActionPrevented ()
 
void PreventDefaultAction ()
 
SpellInfo constGetSpellInfo () const
 
uint32 GetId () const
 
ObjectGuid GetCasterGUID () const
 
UnitGetCaster () const
 
WorldObjectGetOwner () const
 
UnitGetUnitOwner () const
 
DynamicObjectGetDynobjOwner () const
 
void Remove (AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
AuraGetAura () const
 
AuraObjectType GetType () const
 
int32 GetDuration () const
 
void SetDuration (int32 duration, bool withMods=false)
 
void RefreshDuration ()
 
time_t GetApplyTime () const
 
int32 GetMaxDuration () const
 
void SetMaxDuration (int32 duration)
 
int32 CalcMaxDuration () const
 
bool IsExpired () const
 
bool IsPermanent () const
 
uint8 GetCharges () const
 
void SetCharges (uint8 charges)
 
uint8 CalcMaxCharges () const
 
bool ModCharges (int8 num, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
bool DropCharge (AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
uint8 GetStackAmount () const
 
void SetStackAmount (uint8 num)
 
bool ModStackAmount (int32 num, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
bool IsPassive () const
 
bool IsDeathPersistent () const
 
bool HasEffect (uint8 effIndex) const
 
AuraEffectGetEffect (uint8 effIndex) const
 
bool HasEffectType (AuraType type) const
 
UnitGetTarget () const
 
AuraApplication constGetTargetApplication () const
 
- Public Member Functions inherited from _SpellScript
 _SpellScript ()
 
virtual ~_SpellScript ()
 
virtual void _Register ()
 
virtual void _Unload ()
 
virtual void _Init (std::string const *scriptname, uint32 spellId)
 
std::string const_GetScriptName () const
 
virtual bool Validate (SpellInfo const *)
 
virtual void Unload ()
 
- Public Attributes inherited from AuraScript
HookList< CheckAreaTargetHandlerDoCheckAreaTarget
 
HookList< AuraDispelHandlerOnDispel
 
HookList< AuraDispelHandlerAfterDispel
 
HookList< EffectApplyHandlerOnEffectApply
 
HookList< EffectApplyHandlerAfterEffectApply
 
HookList< EffectApplyHandlerOnEffectRemove
 
HookList< EffectApplyHandlerAfterEffectRemove
 
HookList< EffectPeriodicHandlerOnEffectPeriodic
 
HookList
< EffectUpdatePeriodicHandler
OnEffectUpdatePeriodic
 
HookList< EffectCalcAmountHandlerDoEffectCalcAmount
 
HookList
< EffectCalcPeriodicHandler
DoEffectCalcPeriodic
 
HookList
< EffectCalcSpellModHandler
DoEffectCalcSpellMod
 
HookList< EffectAbsorbHandlerOnEffectAbsorb
 
HookList< EffectAbsorbHandlerAfterEffectAbsorb
 
HookList< EffectManaShieldHandlerOnEffectManaShield
 
HookList< EffectManaShieldHandlerAfterEffectManaShield
 
HookList< EffectSplitHandlerOnEffectSplit
 
HookList< CheckProcHandlerDoCheckProc
 
HookList< AuraProcHandlerDoPrepareProc
 
HookList< AuraProcHandlerOnProc
 
HookList< AuraProcHandlerAfterProc
 
HookList< EffectProcHandlerOnEffectProc
 
HookList< EffectProcHandlerAfterEffectProc
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string constm_scriptName
 
uint32 m_scriptSpellId
 

Member Function Documentation

void spell_dk_avoidance_passive::spell_dk_avoidance_passive_AuraScript::CalculateAvoidanceAmount ( AuraEffect const ,
int32 amount,
bool  
)
inlineprivate
1415  {
1416  if (Unit* pet = GetUnitOwner())
1417  {
1418  if (Unit* owner = pet->GetOwner())
1419  {
1420  // Army of the dead ghoul
1421  if (pet->GetEntry() == ENTRY_ARMY_OF_THE_DEAD_GHOUL)
1422  amount = -90;
1423  // Night of the dead
1424  else if (Aura* aur = owner->GetAuraOfRankedSpell(SPELL_NIGHT_OF_THE_DEAD))
1425  amount = aur->GetSpellInfo()->GetEffect(EFFECT_2)->CalcValue();
1426  }
1427  }
1428  }
Definition: spell_pet.cpp:68
Unit * GetUnitOwner() const
Definition: SpellScript.cpp:1016
Definition: spell_pet.cpp:69
Unit * GetOwner() const
Definition: Unit.cpp:7542
Definition: SharedDefines.h:30
Definition: SpellAuras.h:116
Definition: Unit.h:1305

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

bool spell_dk_avoidance_passive::spell_dk_avoidance_passive_AuraScript::Load ( )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

1408  {
1409  if (!GetCaster() || !GetCaster()->GetOwner() || GetCaster()->GetOwner()->GetTypeId() != TYPEID_PLAYER)
1410  return false;
1411  return true;
1412  }
WorldObject * GetOwner() const
Definition: SpellScript.cpp:1011
Definition: ObjectGuid.h:33
Unit * GetCaster() const
Definition: SpellScript.cpp:1006

+ Here is the call graph for this function:

spell_dk_avoidance_passive::spell_dk_avoidance_passive_AuraScript::PrepareAuraScript ( spell_dk_avoidance_passive_AuraScript  )
private
void spell_dk_avoidance_passive::spell_dk_avoidance_passive_AuraScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

1431  {
1433  }
Definition: SharedDefines.h:28
#define AuraEffectCalcAmountFn(F, I, N)
Definition: SpellScript.h:722
Definition: SpellAuraDefines.h:370
HookList< EffectCalcAmountHandler > DoEffectCalcAmount
Definition: SpellScript.h:721
void CalculateAvoidanceAmount(AuraEffect const *, int32 &amount, bool &)
Definition: spell_pet.cpp:1414

+ Here is the call graph for this function:


The documentation for this class was generated from the following file: