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

Public Member Functions

 spell_gen_consume (uint32 spellId1, uint32 spellId2)
 
bool Validate (SpellInfo const *) override
 
void HandleProc (AuraEffect *)
 
void AfterRemove (AuraEffect const *, AuraEffectHandleModes)
 
void Register () override
 
- 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 ()
 

Private Member Functions

 PrepareAuraScript (spell_gen_consume)
 

Private Attributes

uint32 _spellId1
 
uint32 _spellId2
 

Additional Inherited Members

- 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

Constructor & Destructor Documentation

◆ spell_gen_consume()

spell_gen_consume::spell_gen_consume ( uint32  spellId1,
uint32  spellId2 
)
inline
4805: AuraScript(), _spellId1(spellId1), _spellId2(spellId2) { }
AuraScript()
Definition SpellScript.h:700
uint32 _spellId1
Definition spell_generic.cpp:4851
uint32 _spellId2
Definition spell_generic.cpp:4852

Member Function Documentation

◆ AfterRemove()

void spell_gen_consume::AfterRemove ( AuraEffect const *  ,
AuraEffectHandleModes   
)
inline
4827 {
4829 {
4830 if (Unit* caster = GetCaster())
4831 {
4832 if (GetTargetApplication()->GetRemoveMode() == AURA_REMOVE_BY_DEATH)
4833 {
4834 caster->CastSpell(caster, _spellId2, true);
4835 }
4836 else if (GetTargetApplication()->GetRemoveMode() == AURA_REMOVE_BY_EXPIRE)
4837 {
4838 caster->CastSpell(GetTarget(), SPELL_CONSUME_SPIT_OUT, true);
4839 }
4840 }
4841 }
4842 }
@ AURA_REMOVE_BY_DEATH
Definition SpellAuraDefines.h:396
@ AURA_REMOVE_BY_EXPIRE
Definition SpellAuraDefines.h:395
AuraApplication const * GetTargetApplication() const
Definition SpellScript.cpp:1215
Unit * GetCaster() const
Definition SpellScript.cpp:1040
Unit * GetTarget() const
Definition SpellScript.cpp:1185
Definition Unit.h:667
@ SPELL_CONSUME_SPIT_OUT
Definition spell_generic.cpp:4794

References _spellId2, AURA_REMOVE_BY_DEATH, AURA_REMOVE_BY_EXPIRE, AuraScript::GetCaster(), AuraScript::GetTarget(), AuraScript::GetTargetApplication(), and SPELL_CONSUME_SPIT_OUT.

Referenced by Register().

◆ HandleProc()

void spell_gen_consume::HandleProc ( AuraEffect *  )
inline
4813 {
4814 if (Unit* caster = GetCaster())
4815 {
4816 if (!caster->IsAlive())
4817 {
4819 return;
4820 }
4821
4822 caster->CastSpell(GetUnitOwner(), _spellId1, true);
4823 }
4824 }
SpellInfo const * GetSpellInfo() const
Definition SpellScript.cpp:1025
Unit * GetUnitOwner() const
Definition SpellScript.cpp:1050
void RemoveAurasDueToSpell(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, uint8 reqEffMask=0, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
Definition Unit.cpp:4936

References _spellId1, AuraScript::GetCaster(), AuraScript::GetSpellInfo(), AuraScript::GetUnitOwner(), and Unit::RemoveAurasDueToSpell().

Referenced by Register().

◆ PrepareAuraScript()

spell_gen_consume::PrepareAuraScript ( spell_gen_consume  )
private

◆ Register()

void spell_gen_consume::Register ( )
inlineoverridevirtual

Implements _SpellScript.

4845 {
4848 }
@ EFFECT_1
Definition SharedDefines.h:32
@ EFFECT_2
Definition SharedDefines.h:33
@ SPELL_AURA_PERIODIC_TRIGGER_SPELL
Definition SpellAuraDefines.h:86
@ SPELL_AURA_MOD_STUN
Definition SpellAuraDefines.h:75
@ AURA_EFFECT_HANDLE_REAL
Definition SpellAuraDefines.h:42
#define AuraEffectUpdatePeriodicFn(F, I, N)
Definition SpellScript.h:778
#define AuraEffectRemoveFn(F, I, N, M)
Definition SpellScript.h:766
HookList< EffectApplyHandler > AfterEffectRemove
Definition SpellScript.h:765
HookList< EffectUpdatePeriodicHandler > OnEffectUpdatePeriodic
Definition SpellScript.h:777
void AfterRemove(AuraEffect const *, AuraEffectHandleModes)
Definition spell_generic.cpp:4826
void HandleProc(AuraEffect *)
Definition spell_generic.cpp:4812

References AuraScript::AfterEffectRemove, AfterRemove(), AURA_EFFECT_HANDLE_REAL, AuraEffectRemoveFn, AuraEffectUpdatePeriodicFn, EFFECT_1, EFFECT_2, HandleProc(), AuraScript::OnEffectUpdatePeriodic, SPELL_AURA_MOD_STUN, and SPELL_AURA_PERIODIC_TRIGGER_SPELL.

◆ Validate()

bool spell_gen_consume::Validate ( SpellInfo const *  )
inlineoverridevirtual

Reimplemented from _SpellScript.

4808 {
4810 }
static bool ValidateSpellInfo(std::initializer_list< uint32 > spellIds)
Definition SpellScript.h:125

References _spellId1, _spellId2, and _SpellScript::ValidateSpellInfo().

Member Data Documentation

◆ _spellId1

uint32 spell_gen_consume::_spellId1
private

Referenced by HandleProc(), and Validate().

◆ _spellId2

uint32 spell_gen_consume::_spellId2
private

Referenced by AfterRemove(), and Validate().


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