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 void Register ()=0
 
virtual bool Validate (SpellInfo 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 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
 
virtual bool _Validate (SpellInfo const *entry)
 
- 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
385 {
386 Creature* caster = GetCaster()->ToCreature();
387 if (!caster || !caster->IsSummon())
388 return;
389
390 uint32 lightwellRenew = 0;
391 switch (caster->GetEntry())
392 {
393 case PRIEST_LIGHTWELL_NPC_1: lightwellRenew = 7001; break;
394 case PRIEST_LIGHTWELL_NPC_2: lightwellRenew = 27873; break;
395 case PRIEST_LIGHTWELL_NPC_3: lightwellRenew = 27874; break;
396 case PRIEST_LIGHTWELL_NPC_4: lightwellRenew = 28276; break;
397 case PRIEST_LIGHTWELL_NPC_5: lightwellRenew = 48084; break;
398 case PRIEST_LIGHTWELL_NPC_6: lightwellRenew = 48085; break;
399 }
400
401 // proc a spellcast
402 if (Aura* chargesAura = caster->GetAura(SPELL_PRIEST_LIGHTWELL_CHARGES))
403 {
404 caster->CastSpell(GetHitUnit(), lightwellRenew, caster->ToTempSummon()->GetSummonerGUID());
405 if (chargesAura->ModCharges(-1))
406 caster->ToTempSummon()->UnSummon();
407 }
408 }
std::uint32_t uint32
Definition: Define.h:108
@ PRIEST_LIGHTWELL_NPC_3
Definition: spell_priest.cpp:70
@ PRIEST_LIGHTWELL_NPC_2
Definition: spell_priest.cpp:69
@ PRIEST_LIGHTWELL_NPC_6
Definition: spell_priest.cpp:73
@ PRIEST_LIGHTWELL_NPC_4
Definition: spell_priest.cpp:71
@ PRIEST_LIGHTWELL_NPC_1
Definition: spell_priest.cpp:68
@ PRIEST_LIGHTWELL_NPC_5
Definition: spell_priest.cpp:72
@ SPELL_PRIEST_LIGHTWELL_CHARGES
Definition: spell_priest.cpp:41
Definition: Creature.h:46
virtual void UnSummon(uint32 msTime=0)
Definition: TemporarySummon.cpp:283
ObjectGuid GetSummonerGUID() const
Definition: TemporarySummon.h:55
uint32 GetEntry() const
Definition: Object.h:109
Creature * ToCreature()
Definition: Object.h:197
Aura * GetAura(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, ObjectGuid itemCasterGUID=ObjectGuid::Empty, uint8 reqEffMask=0) const
Definition: Unit.cpp:5499
TempSummon * ToTempSummon()
Definition: Unit.h:2400
bool IsSummon() const
Definition: Unit.h:1410
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:1169
Definition: SpellAuras.h:87
Unit * GetHitUnit()
Definition: SpellScript.cpp:448
Unit * GetCaster()
Definition: SpellScript.cpp:401

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.

380 {
381 return GetCaster()->GetTypeId() == TYPEID_UNIT;
382 }
@ TYPEID_UNIT
Definition: ObjectGuid.h:37
TypeID GetTypeId() const
Definition: Object.h:121

References SpellScript::GetCaster(), Object::GetTypeId(), and TYPEID_UNIT.

◆ PrepareSpellScript()

spell_pri_lightwell::PrepareSpellScript ( spell_pri_lightwell  )
private

◆ Register()

void spell_pri_lightwell::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

411 {
413 }
#define SpellEffectFn(F, I, N)
Definition: SpellScript.h:337
@ EFFECT_0
Definition: SharedDefines.h:30
@ SPELL_EFFECT_SCRIPT_EFFECT
Definition: SharedDefines.h:827
HookList< EffectHandler > OnEffectHitTarget
Definition: SpellScript.h:336
void HandleScriptEffect(SpellEffIndex)
Definition: spell_priest.cpp:384

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