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

Private Member Functions

 PrepareAuraScript (spell_warl_pet_passive_AuraScript)
 
bool Load () override
 
void CalculateAmountCritSpell (AuraEffect const *, int32 &amount, bool &)
 
void CalculateAmountCritMelee (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_warl_pet_passive::spell_warl_pet_passive_AuraScript::CalculateAmountCritMelee ( AuraEffect const ,
int32 amount,
bool  
)
inlineprivate
697  {
698  if (Player* owner = GetCaster()->GetOwner()->ToPlayer())
699  {
700  // For others recalculate it from:
701  float CritMelee = 0.0f;
702  // Crit from Agility
703  CritMelee += owner->GetMeleeCritFromAgility();
704  // Increase crit from SPELL_AURA_MOD_WEAPON_CRIT_PERCENT
705  CritMelee += owner->GetTotalAuraModifier(SPELL_AURA_MOD_WEAPON_CRIT_PERCENT);
706  // Increase crit from SPELL_AURA_MOD_CRIT_PCT
707  CritMelee += owner->GetTotalAuraModifier(SPELL_AURA_MOD_CRIT_PCT);
708  // Increase crit melee from melee crit ratings
709  CritMelee += owner->GetRatingBonusValue(CR_CRIT_MELEE);
710 
711  if (AuraApplication* improvedDemonicTacticsApp = owner->GetAuraApplicationOfRankedSpell(54347))
712  if (Aura* improvedDemonicTactics = improvedDemonicTacticsApp->GetBase())
713  if (AuraEffect* improvedDemonicTacticsEffect = improvedDemonicTactics->GetEffect(EFFECT_0))
714  amount += CalculatePct(CritMelee, improvedDemonicTacticsEffect->GetAmount());
715  }
716  }
Definition: SpellAuraEffects.h:30
Definition: SpellAuraDefines.h:112
Definition: SharedDefines.h:28
Definition: SpellAuras.h:50
WorldObject * GetOwner() const
Definition: SpellScript.cpp:1011
T CalculatePct(T base, U pct)
Definition: Util.h:92
Unit * GetCaster() const
Definition: SpellScript.cpp:1006
Definition: SpellAuraDefines.h:350
Definition: SpellAuras.h:116
Definition: Unit.h:633

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void spell_warl_pet_passive::spell_warl_pet_passive_AuraScript::CalculateAmountCritSpell ( AuraEffect const ,
int32 amount,
bool  
)
inlineprivate
675  {
676  if (Player* owner = GetCaster()->GetOwner()->ToPlayer())
677  {
678  // For others recalculate it from:
679  float CritSpell = 0.0f;
680  // Crit from Intellect
681  CritSpell += owner->GetSpellCritFromIntellect();
682  // Increase crit from SPELL_AURA_MOD_SPELL_CRIT_CHANCE
683  CritSpell += owner->GetTotalAuraModifier(SPELL_AURA_MOD_SPELL_CRIT_CHANCE);
684  // Increase crit from SPELL_AURA_MOD_CRIT_PCT
685  CritSpell += owner->GetTotalAuraModifier(SPELL_AURA_MOD_CRIT_PCT);
686  // Increase crit spell from spell crit ratings
687  CritSpell += owner->GetRatingBonusValue(CR_CRIT_SPELL);
688 
689  if (AuraApplication* improvedDemonicTacticsApp = owner->GetAuraApplicationOfRankedSpell(54347))
690  if (Aura* improvedDemonicTactics = improvedDemonicTacticsApp->GetBase())
691  if (AuraEffect* improvedDemonicTacticsEffect = improvedDemonicTactics->GetEffect(EFFECT_0))
692  amount += CalculatePct(CritSpell, improvedDemonicTacticsEffect->GetAmount());
693  }
694  }
Definition: SpellAuraEffects.h:30
Definition: SharedDefines.h:28
Definition: SpellAuras.h:50
WorldObject * GetOwner() const
Definition: SpellScript.cpp:1011
Definition: SpellAuraDefines.h:117
Definition: Unit.h:635
T CalculatePct(T base, U pct)
Definition: Util.h:92
Unit * GetCaster() const
Definition: SpellScript.cpp:1006
Definition: SpellAuraDefines.h:350
Definition: SpellAuras.h:116

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

bool spell_warl_pet_passive::spell_warl_pet_passive_AuraScript::Load ( )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

668  {
669  if (!GetCaster() || !GetCaster()->GetOwner() || GetCaster()->GetOwner()->GetTypeId() != TYPEID_PLAYER)
670  return false;
671  return true;
672  }
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_warl_pet_passive::spell_warl_pet_passive_AuraScript::PrepareAuraScript ( spell_warl_pet_passive_AuraScript  )
private
void spell_warl_pet_passive::spell_warl_pet_passive_AuraScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

719  {
722  }
Definition: SpellAuraDefines.h:112
Definition: SharedDefines.h:29
Definition: SharedDefines.h:28
#define AuraEffectCalcAmountFn(F, I, N)
Definition: SpellScript.h:722
Definition: SpellAuraDefines.h:117
void CalculateAmountCritSpell(AuraEffect const *, int32 &amount, bool &)
Definition: spell_pet.cpp:674
HookList< EffectCalcAmountHandler > DoEffectCalcAmount
Definition: SpellScript.h:721
void CalculateAmountCritMelee(AuraEffect const *, int32 &amount, bool &)
Definition: spell_pet.cpp:696

+ Here is the call graph for this function:


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