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

Private Member Functions

 PrepareSpellScript (spell_pri_lightwell)
 
bool Load () override
 
void HandleScriptEffect (SpellEffIndex)
 
void Register () override
 

Additional Inherited Members

- Public Member Functions inherited from SpellScript
bool _Validate (SpellInfo const *entry) override
 
bool _Load (Spell *spell)
 
void _InitHit ()
 
bool _IsEffectPrevented (SpellEffIndex effIndex)
 
bool _IsDefaultEffectPrevented (SpellEffIndex effIndex)
 
void _PrepareScriptCall (SpellScriptHookType hookType)
 
void _FinishScriptCall ()
 
bool IsInCheckCastHook () const
 
bool IsInTargetHook () const
 
bool IsInHitPhase () const
 
bool IsInEffectHook () const
 
UnitGetCaster ()
 
UnitGetOriginalCaster ()
 
SpellInfo const * GetSpellInfo ()
 
SpellValue const * GetSpellValue ()
 
WorldLocation const * GetExplTargetDest ()
 
void SetExplTargetDest (WorldLocation &loc)
 
WorldObjectGetExplTargetWorldObject ()
 
UnitGetExplTargetUnit ()
 
GameObjectGetExplTargetGObj ()
 
ItemGetExplTargetItem ()
 
UnitGetHitUnit ()
 
CreatureGetHitCreature ()
 
PlayerGetHitPlayer ()
 
ItemGetHitItem ()
 
GameObjectGetHitGObj ()
 
WorldLocationGetHitDest ()
 
int32 GetHitDamage ()
 
void SetHitDamage (int32 damage)
 
void PreventHitDamage ()
 
int32 GetHitHeal ()
 
void SetHitHeal (int32 heal)
 
void PreventHitHeal ()
 
SpellGetSpell ()
 
AuraGetHitAura ()
 
void PreventHitAura ()
 
void PreventHitEffect (SpellEffIndex effIndex)
 
void PreventHitDefaultEffect (SpellEffIndex effIndex)
 
int32 GetEffectValue () const
 
void SetEffectValue (int32 value)
 
ItemGetCastItem ()
 
void CreateItem (uint32 effIndex, uint32 itemId)
 
SpellInfo const * GetTriggeringSpell ()
 
void FinishCast (SpellCastResult result)
 
void Cancel ()
 
void SetCustomCastResultMessage (SpellCustomErrors result)
 
- 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 ()
 
- 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 SpellScript
HookList< CastHandlerBeforeCast
 
HookList< CastHandlerOnCast
 
HookList< CastHandlerAfterCast
 
HookList< CheckCastHandlerOnCheckCast
 
HookList< EffectHandlerOnEffectLaunch
 
HookList< EffectHandlerOnEffectLaunchTarget
 
HookList< EffectHandlerOnEffectHit
 
HookList< EffectHandlerOnEffectHitTarget
 
HookList< BeforeHitHandlerBeforeHit
 
HookList< HitHandlerOnHit
 
HookList< HitHandlerAfterHit
 
HookList< ObjectAreaTargetSelectHandlerOnObjectAreaTargetSelect
 
HookList< ObjectTargetSelectHandlerOnObjectTargetSelect
 
HookList< DestinationTargetSelectHandlerOnDestinationTargetSelect
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string const * m_scriptName
 
uint32 m_scriptSpellId
 

Detailed Description

Member Function Documentation

◆ HandleScriptEffect()

void spell_pri_lightwell::HandleScriptEffect ( SpellEffIndex  )
inlineprivate
388 {
389 Creature* caster = GetCaster()->ToCreature();
390 if (!caster || !caster->IsSummon())
391 return;
392
393 uint32 lightwellRenew = 0;
394 switch (caster->GetEntry())
395 {
396 case PRIEST_LIGHTWELL_NPC_1: lightwellRenew = 7001; break;
397 case PRIEST_LIGHTWELL_NPC_2: lightwellRenew = 27873; break;
398 case PRIEST_LIGHTWELL_NPC_3: lightwellRenew = 27874; break;
399 case PRIEST_LIGHTWELL_NPC_4: lightwellRenew = 28276; break;
400 case PRIEST_LIGHTWELL_NPC_5: lightwellRenew = 48084; break;
401 case PRIEST_LIGHTWELL_NPC_6: lightwellRenew = 48085; break;
402 }
403
404 // proc a spellcast
405 if (Aura* chargesAura = caster->GetAura(SPELL_PRIEST_LIGHTWELL_CHARGES))
406 {
407 caster->CastSpell(GetHitUnit(), lightwellRenew, caster->ToTempSummon()->GetSummonerGUID());
408 if (chargesAura->ModCharges(-1))
409 caster->ToTempSummon()->UnSummon();
410 }
411 }
std::uint32_t uint32
Definition Define.h:107
Definition SpellAuras.h:87
Definition Creature.h:43
uint32 GetEntry() const
Definition Object.h:115
Creature * ToCreature()
Definition Object.h:205
Unit * GetHitUnit()
Definition SpellScript.cpp:448
Unit * GetCaster()
Definition SpellScript.cpp:401
virtual void UnSummon(uint32 msTime=0)
Definition TemporarySummon.cpp:287
ObjectGuid GetSummonerGUID() const
Definition TemporarySummon.h:56
Aura * GetAura(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, ObjectGuid itemCasterGUID=ObjectGuid::Empty, uint8 reqEffMask=0) const
Definition Unit.cpp:5613
TempSummon * ToTempSummon()
Definition Unit.h:702
bool IsSummon() const
Definition Unit.h:760
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:1178
@ PRIEST_LIGHTWELL_NPC_3
Definition spell_priest.cpp:73
@ PRIEST_LIGHTWELL_NPC_2
Definition spell_priest.cpp:72
@ PRIEST_LIGHTWELL_NPC_6
Definition spell_priest.cpp:76
@ PRIEST_LIGHTWELL_NPC_4
Definition spell_priest.cpp:74
@ PRIEST_LIGHTWELL_NPC_1
Definition spell_priest.cpp:71
@ PRIEST_LIGHTWELL_NPC_5
Definition spell_priest.cpp:75
@ SPELL_PRIEST_LIGHTWELL_CHARGES
Definition spell_priest.cpp:41

References Unit::CastSpell(), Unit::GetAura(), SpellScript::GetCaster(), Object::GetEntry(), SpellScript::GetHitUnit(), TempSummon::GetSummonerGUID(), Unit::IsSummon(), PRIEST_LIGHTWELL_NPC_1, PRIEST_LIGHTWELL_NPC_2, PRIEST_LIGHTWELL_NPC_3, PRIEST_LIGHTWELL_NPC_4, PRIEST_LIGHTWELL_NPC_5, PRIEST_LIGHTWELL_NPC_6, SPELL_PRIEST_LIGHTWELL_CHARGES, Object::ToCreature(), Unit::ToTempSummon(), and TempSummon::UnSummon().

Referenced by Register().

◆ Load()

bool spell_pri_lightwell::Load ( )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

383 {
384 return GetCaster()->IsCreature();
385 }
bool IsCreature() const
Definition Object.h:204

References SpellScript::GetCaster(), and Object::IsCreature().

◆ PrepareSpellScript()

spell_pri_lightwell::PrepareSpellScript ( spell_pri_lightwell  )
private

◆ Register()

void spell_pri_lightwell::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

414 {
416 }
@ EFFECT_0
Definition SharedDefines.h:31
@ SPELL_EFFECT_SCRIPT_EFFECT
Definition SharedDefines.h:855
#define SpellEffectFn(F, I, N)
Definition SpellScript.h:337
HookList< EffectHandler > OnEffectHitTarget
Definition SpellScript.h:336
void HandleScriptEffect(SpellEffIndex)
Definition spell_priest.cpp:387

References EFFECT_0, HandleScriptEffect(), SpellScript::OnEffectHitTarget, SPELL_EFFECT_SCRIPT_EFFECT, and SpellEffectFn.


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