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

Private Member Functions

 PrepareAuraScript (spell_mimiron_magnetic_core_AuraScript)
 
bool Validate (SpellInfo const *) override
 
void OnApply (AuraEffect const *, AuraEffectHandleModes)
 
void OnRemove (AuraEffect const *, AuraEffectHandleModes)
 
void OnRemoveSelf (AuraEffect const *, AuraEffectHandleModes)
 
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 Load ()
 
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_mimiron_magnetic_core::spell_mimiron_magnetic_core_AuraScript::OnApply ( AuraEffect const ,
AuraEffectHandleModes   
)
inlineprivate
1866  {
1867  if (Creature* target = GetTarget()->ToCreature())
1868  {
1869  target->AI()->DoAction(DO_DISABLE_AERIAL);
1870  target->CastSpell(target, SPELL_MAGNETIC_CORE_VISUAL, true);
1871  }
1872  }
Definition: boss_mimiron.cpp:289
Definition: Creature.h:467
Unit * GetTarget() const
Definition: SpellScript.cpp:1151
Definition: boss_mimiron.cpp:173

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void spell_mimiron_magnetic_core::spell_mimiron_magnetic_core_AuraScript::OnRemove ( AuraEffect const ,
AuraEffectHandleModes   
)
inlineprivate
1875  {
1876  if (Creature* target = GetTarget()->ToCreature())
1877  {
1878  target->AI()->DoAction(DO_ENABLE_AERIAL);
1879  target->RemoveAurasDueToSpell(SPELL_MAGNETIC_CORE_VISUAL);
1880  }
1881  }
Definition: boss_mimiron.cpp:290
Definition: Creature.h:467
Unit * GetTarget() const
Definition: SpellScript.cpp:1151
Definition: boss_mimiron.cpp:173

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void spell_mimiron_magnetic_core::spell_mimiron_magnetic_core_AuraScript::OnRemoveSelf ( AuraEffect const ,
AuraEffectHandleModes   
)
inlineprivate
1884  {
1885  if (TempSummon* summ = GetTarget()->ToTempSummon())
1886  summ->DespawnOrUnsummon();
1887  }
Definition: TemporarySummon.h:40
Unit * GetTarget() const
Definition: SpellScript.cpp:1151

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

spell_mimiron_magnetic_core::spell_mimiron_magnetic_core_AuraScript::PrepareAuraScript ( spell_mimiron_magnetic_core_AuraScript  )
private
void spell_mimiron_magnetic_core::spell_mimiron_magnetic_core_AuraScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

1890  {
1894  }
HookList< EffectApplyHandler > AfterEffectApply
Definition: SpellScript.h:692
Definition: SpellAuraDefines.h:147
Definition: SharedDefines.h:29
void OnApply(AuraEffect const *, AuraEffectHandleModes)
Definition: boss_mimiron.cpp:1865
Definition: SharedDefines.h:28
#define AuraEffectRemoveFn(F, I, N, M)
Definition: SpellScript.h:704
HookList< EffectApplyHandler > AfterEffectRemove
Definition: SpellScript.h:703
Definition: SpellAuraDefines.h:39
void OnRemoveSelf(AuraEffect const *, AuraEffectHandleModes)
Definition: boss_mimiron.cpp:1883
Definition: SpellAuraDefines.h:64
#define AuraEffectApplyFn(F, I, N, M)
Definition: SpellScript.h:693
void OnRemove(AuraEffect const *, AuraEffectHandleModes)
Definition: boss_mimiron.cpp:1874

+ Here is the call graph for this function:

bool spell_mimiron_magnetic_core::spell_mimiron_magnetic_core_AuraScript::Validate ( SpellInfo const )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

1859  {
1860  if (!sSpellMgr->GetSpellInfo(SPELL_MAGNETIC_CORE_VISUAL))
1861  return false;
1862  return true;
1863  }
#define sSpellMgr
Definition: SpellMgr.h:756
Definition: boss_mimiron.cpp:173

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