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

Public Member Functions

 spell_dru_savage_defense_AuraScript ()
 
- 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 ()
 

Private Member Functions

 PrepareAuraScript (spell_dru_savage_defense_AuraScript)
 
bool Load () override
 
void CalculateAmount (AuraEffect const *, int32 &amount, bool &)
 
void Absorb (AuraEffect *aurEff, DamageInfo &, uint32 &absorbAmount)
 
void Register () override
 

Private Attributes

uint32 absorbPct
 

Additional Inherited Members

- 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
 

Constructor & Destructor Documentation

spell_dru_savage_defense::spell_dru_savage_defense_AuraScript::spell_dru_savage_defense_AuraScript ( )
inline
719  {
720  absorbPct = 0;
721  }

Member Function Documentation

void spell_dru_savage_defense::spell_dru_savage_defense_AuraScript::Absorb ( AuraEffect aurEff,
DamageInfo ,
uint32 absorbAmount 
)
inlineprivate
739  {
740  absorbAmount = uint32(CalculatePct(GetTarget()->GetTotalAttackPowerValue(BASE_ATTACK), absorbPct));
741  aurEff->SetAmount(0);
742  }
Unit * GetTarget() const
Definition: SpellScript.cpp:1151
T CalculatePct(T base, U pct)
Definition: Util.h:92
void SetAmount(int32 amount)
Definition: SpellAuraEffects.h:56
uint32_t uint32
Definition: g3dmath.h:168
Definition: Unit.h:617

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void spell_dru_savage_defense::spell_dru_savage_defense_AuraScript::CalculateAmount ( AuraEffect const ,
int32 amount,
bool  
)
inlineprivate
733  {
734  // Set absorbtion amount to unlimited
735  amount = -1;
736  }

+ Here is the caller graph for this function:

bool spell_dru_savage_defense::spell_dru_savage_defense_AuraScript::Load ( )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

727  {
729  return true;
730  }
Definition: SharedDefines.h:28
SpellInfo const * GetSpellInfo() const
Definition: SpellScript.cpp:991
SpellEffectInfo const * GetEffect(uint32 difficulty, uint32 index) const
Definition: SpellInfo.cpp:3348
int32 CalcValue(Unit const *caster=nullptr, int32 const *basePoints=nullptr, Unit const *target=nullptr, float *variance=nullptr, int32 itemLevel=-1) const
Definition: SpellInfo.cpp:455
Unit * GetCaster() const
Definition: SpellScript.cpp:1006

+ Here is the call graph for this function:

spell_dru_savage_defense::spell_dru_savage_defense_AuraScript::PrepareAuraScript ( spell_dru_savage_defense_AuraScript  )
private
void spell_dru_savage_defense::spell_dru_savage_defense_AuraScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

745  {
748  }
#define AuraEffectAbsorbFn(F, I)
Definition: SpellScript.h:740
Definition: SharedDefines.h:28
#define AuraEffectCalcAmountFn(F, I, N)
Definition: SpellScript.h:722
void CalculateAmount(AuraEffect const *, int32 &amount, bool &)
Definition: spell_druid.cpp:732
HookList< EffectAbsorbHandler > OnEffectAbsorb
Definition: SpellScript.h:739
void Absorb(AuraEffect *aurEff, DamageInfo &, uint32 &absorbAmount)
Definition: spell_druid.cpp:738
HookList< EffectCalcAmountHandler > DoEffectCalcAmount
Definition: SpellScript.h:721
Definition: SpellAuraDefines.h:129

+ Here is the call graph for this function:

Member Data Documentation

uint32 spell_dru_savage_defense::spell_dru_savage_defense_AuraScript::absorbPct
private

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