AzerothCore 3.3.5a
OpenSource WoW Emulator
Loading...
Searching...
No Matches
spell_item_living_root_of_the_wildheart Class Reference
Inheritance diagram for spell_item_living_root_of_the_wildheart:
AuraScript _SpellScript

Private Member Functions

 PrepareAuraScript (spell_item_living_root_of_the_wildheart)
 
bool Validate (SpellInfo const *) override
 
bool CheckProc (ProcEventInfo &eventInfo)
 
void HandleProc (AuraEffect const *aurEff, ProcEventInfo &eventInfo)
 
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=nullptr)
 
void _FinishScriptCall ()
 
bool _IsDefaultActionPrevented ()
 
void PreventDefaultAction ()
 
SpellInfo const * GetSpellInfo () const
 
uint32 GetId () const
 
ObjectGuid GetCasterGUID () const
 
Unit * GetCaster () const
 
WorldObject * GetOwner () const
 
Unit * GetUnitOwner () const
 
DynamicObject * GetDynobjOwner () const
 
void Remove (AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
Aura * GetAura () 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
 
AuraEffect * GetEffect (uint8 effIndex) const
 
bool HasEffectType (AuraType type) const
 
Unit * GetTarget () const
 
AuraApplication const * GetTargetApplication () 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 Load ()
 
virtual void Unload ()
 
- Static Public Member Functions inherited from _SpellScript
static bool ValidateSpellInfo (std::initializer_list< uint32 > spellIds)
 
template<class T >
static bool ValidateSpellInfo (T const &spellIds)
 
- Public Attributes inherited from AuraScript
HookList< CheckAreaTargetHandler > DoCheckAreaTarget
 
HookList< AuraDispelHandler > OnDispel
 
HookList< AuraDispelHandler > AfterDispel
 
HookList< EffectApplyHandler > OnEffectApply
 
HookList< EffectApplyHandler > AfterEffectApply
 
HookList< EffectApplyHandler > OnEffectRemove
 
HookList< EffectApplyHandler > AfterEffectRemove
 
HookList< EffectPeriodicHandler > OnEffectPeriodic
 
HookList< EffectUpdatePeriodicHandler > OnEffectUpdatePeriodic
 
HookList< EffectCalcAmountHandler > DoEffectCalcAmount
 
HookList< EffectCalcPeriodicHandler > DoEffectCalcPeriodic
 
HookList< EffectCalcSpellModHandler > DoEffectCalcSpellMod
 
HookList< EffectAbsorbHandler > OnEffectAbsorb
 
HookList< EffectAbsorbHandler > AfterEffectAbsorb
 
HookList< EffectManaShieldHandler > OnEffectManaShield
 
HookList< EffectManaShieldHandler > AfterEffectManaShield
 
HookList< EffectSplitHandler > OnEffectSplit
 
HookList< CheckProcHandler > DoCheckProc
 
HookList< CheckEffectProcHandler > DoCheckEffectProc
 
HookList< AfterCheckProcHandler > DoAfterCheckProc
 
HookList< AuraProcHandler > DoPrepareProc
 
HookList< AuraProcHandler > OnProc
 
HookList< AuraProcHandler > AfterProc
 
HookList< EffectProcHandler > OnEffectProc
 
HookList< EffectProcHandler > AfterEffectProc
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string const * m_scriptName
 
uint32 m_scriptSpellId
 

Detailed Description

Member Function Documentation

◆ CheckProc()

bool spell_item_living_root_of_the_wildheart::CheckProc ( ProcEventInfo &  eventInfo)
inlineprivate
6017 {
6018 Unit* target = eventInfo.GetActor();
6019
6020 switch (target->GetShapeshiftForm())
6021 {
6022 case FORM_BEAR:
6023 case FORM_DIREBEAR:
6024 case FORM_CAT:
6025 case FORM_MOONKIN:
6026 case FORM_NONE:
6027 case FORM_TREE:
6028 return true;
6029 default:
6030 break;
6031 }
6032
6033 return false;
6034 }
@ FORM_DIREBEAR
Definition UnitDefines.h:80
@ FORM_MOONKIN
Definition UnitDefines.h:101
@ FORM_NONE
Definition UnitDefines.h:72
@ FORM_CAT
Definition UnitDefines.h:73
@ FORM_TREE
Definition UnitDefines.h:74
@ FORM_BEAR
Definition UnitDefines.h:77
Unit * GetActor()
Definition Unit.h:460
Definition Unit.h:665
ShapeshiftForm GetShapeshiftForm() const
Definition Unit.h:1963

References FORM_BEAR, FORM_CAT, FORM_DIREBEAR, FORM_MOONKIN, FORM_NONE, FORM_TREE, ProcEventInfo::GetActor(), and Unit::GetShapeshiftForm().

Referenced by Register().

◆ HandleProc()

void spell_item_living_root_of_the_wildheart::HandleProc ( AuraEffect const *  aurEff,
ProcEventInfo &  eventInfo 
)
inlineprivate
6037 {
6039 Unit* target = eventInfo.GetActor();
6040 uint32 triggerspell = 0;
6041
6042 switch (target->GetShapeshiftForm())
6043 {
6044 case FORM_BEAR:
6045 case FORM_DIREBEAR:
6046 triggerspell = SPELL_LIVING_ROOT_BEAR;
6047 break;
6048 case FORM_CAT:
6049 triggerspell = SPELL_LIVING_ROOT_CAT;
6050 break;
6051 case FORM_MOONKIN:
6052 triggerspell = SPELL_LIVING_ROOT_MOONKIN;
6053 break;
6054 case FORM_NONE:
6055 triggerspell = SPELL_LIVING_ROOT_NONE;
6056 break;
6057 case FORM_TREE:
6058 triggerspell = SPELL_LIVING_ROOT_TREE;
6059 break;
6060 default:
6061 return;
6062 }
6063
6064 target->CastSpell(target, triggerspell, true, nullptr, aurEff);
6065 }
std::uint32_t uint32
Definition Define.h:107
void PreventDefaultAction()
Definition SpellScript.cpp:1005
SpellCastResult CastSpell(SpellCastTargets const &targets, SpellInfo const *spellInfo, CustomSpellValues const *value, TriggerCastFlags triggerFlags=TRIGGERED_NONE, Item *castItem=nullptr, AuraEffect const *triggeredByAura=nullptr, ObjectGuid originalCaster=ObjectGuid::Empty)
Definition Unit.cpp:1372
@ SPELL_LIVING_ROOT_NONE
Definition spell_item.cpp:92
@ SPELL_LIVING_ROOT_BEAR
Definition spell_item.cpp:88
@ SPELL_LIVING_ROOT_MOONKIN
Definition spell_item.cpp:91
@ SPELL_LIVING_ROOT_CAT
Definition spell_item.cpp:89
@ SPELL_LIVING_ROOT_TREE
Definition spell_item.cpp:90

References Unit::CastSpell(), FORM_BEAR, FORM_CAT, FORM_DIREBEAR, FORM_MOONKIN, FORM_NONE, FORM_TREE, ProcEventInfo::GetActor(), Unit::GetShapeshiftForm(), AuraScript::PreventDefaultAction(), SPELL_LIVING_ROOT_BEAR, SPELL_LIVING_ROOT_CAT, SPELL_LIVING_ROOT_MOONKIN, SPELL_LIVING_ROOT_NONE, and SPELL_LIVING_ROOT_TREE.

Referenced by Register().

◆ PrepareAuraScript()

spell_item_living_root_of_the_wildheart::PrepareAuraScript ( spell_item_living_root_of_the_wildheart  )
private

◆ Register()

void spell_item_living_root_of_the_wildheart::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

6068 {
6071 }
@ EFFECT_0
Definition SharedDefines.h:31
@ SPELL_AURA_PROC_TRIGGER_SPELL
Definition SpellAuraDefines.h:105
#define AuraEffectProcFn(F, I, N)
Definition SpellScript.h:868
#define AuraCheckProcFn(F)
Definition SpellScript.h:831
HookList< CheckProcHandler > DoCheckProc
Definition SpellScript.h:830
HookList< EffectProcHandler > OnEffectProc
Definition SpellScript.h:863
bool CheckProc(ProcEventInfo &eventInfo)
Definition spell_item.cpp:6016
void HandleProc(AuraEffect const *aurEff, ProcEventInfo &eventInfo)
Definition spell_item.cpp:6036

References AuraCheckProcFn, AuraEffectProcFn, CheckProc(), AuraScript::DoCheckProc, EFFECT_0, HandleProc(), AuraScript::OnEffectProc, and SPELL_AURA_PROC_TRIGGER_SPELL.

◆ Validate()

bool spell_item_living_root_of_the_wildheart::Validate ( SpellInfo const *  )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

6006 {
6007 return ValidateSpellInfo({
6013 });
6014 }
static bool ValidateSpellInfo(std::initializer_list< uint32 > spellIds)
Definition SpellScript.h:125

References SPELL_LIVING_ROOT_BEAR, SPELL_LIVING_ROOT_CAT, SPELL_LIVING_ROOT_MOONKIN, SPELL_LIVING_ROOT_NONE, SPELL_LIVING_ROOT_TREE, and _SpellScript::ValidateSpellInfo().


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