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

Private Member Functions

 PrepareSpellScript (spell_festergut_pungent_blight_SpellScript)
 
bool Load () override
 
void HandleScript (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

◆ HandleScript()

void spell_festergut_pungent_blight::spell_festergut_pungent_blight_SpellScript::HandleScript ( SpellEffIndex  )
inlineprivate
302 {
303 Unit* caster = GetCaster();
304 if (caster->GetTypeId() != TYPEID_UNIT)
305 return;
306
307 // Get Inhaled Blight id for our difficulty
308 uint32 blightId = sSpellMgr->GetSpellIdForDifficulty(uint32(GetEffectValue()), caster);
309
310 // ...and remove it
311 caster->RemoveAurasDueToSpell(blightId);
312 caster->ToCreature()->AI()->Talk(EMOTE_PUNGENT_BLIGHT);
313
314 if (InstanceScript* inst = caster->GetInstanceScript())
315 if (Creature* professor = ObjectAccessor::GetCreature(*caster, inst->GetGuidData(DATA_PROFESSOR_PUTRICIDE)))
316 professor->AI()->DoAction(ACTION_FESTERGUT_GAS);
317 }
std::uint32_t uint32
Definition: Define.h:108
@ TYPEID_UNIT
Definition: ObjectGuid.h:37
#define sSpellMgr
Definition: SpellMgr.h:825
@ EMOTE_PUNGENT_BLIGHT
Definition: boss_festergut.cpp:34
@ ACTION_FESTERGUT_GAS
Definition: icecrown_citadel.h:524
@ DATA_PROFESSOR_PUTRICIDE
Definition: icecrown_citadel.h:100
Creature * GetCreature(WorldObject const &u, ObjectGuid const guid)
Definition: ObjectAccessor.cpp:213
void Talk(uint8 id, WorldObject const *whisperTarget=nullptr, Milliseconds delay=0s)
Causes the creature to talk/say the text assigned to their entry in the creature_text database table.
Definition: CreatureAI.cpp:49
Definition: Creature.h:46
CreatureAI * AI() const
Definition: Creature.h:136
TypeID GetTypeId() const
Definition: Object.h:121
Creature * ToCreature()
Definition: Object.h:197
InstanceScript * GetInstanceScript() const
Definition: Object.cpp:1192
Definition: Unit.h:1302
void RemoveAurasDueToSpell(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, uint8 reqEffMask=0, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
Definition: Unit.cpp:4855
Definition: InstanceScript.h:141
int32 GetEffectValue() const
Definition: SpellScript.cpp:600
Unit * GetCaster()
Definition: SpellScript.cpp:401

References ACTION_FESTERGUT_GAS, Creature::AI(), DATA_PROFESSOR_PUTRICIDE, EMOTE_PUNGENT_BLIGHT, SpellScript::GetCaster(), ObjectAccessor::GetCreature(), SpellScript::GetEffectValue(), WorldObject::GetInstanceScript(), Object::GetTypeId(), Unit::RemoveAurasDueToSpell(), sSpellMgr, CreatureAI::Talk(), Object::ToCreature(), and TYPEID_UNIT.

Referenced by Register().

◆ Load()

bool spell_festergut_pungent_blight::spell_festergut_pungent_blight_SpellScript::Load ( )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

297 {
298 return GetCaster()->GetTypeId() == TYPEID_UNIT;
299 }

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

◆ PrepareSpellScript()

spell_festergut_pungent_blight::spell_festergut_pungent_blight_SpellScript::PrepareSpellScript ( spell_festergut_pungent_blight_SpellScript  )
private

◆ Register()

void spell_festergut_pungent_blight::spell_festergut_pungent_blight_SpellScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

320 {
322 }
#define SpellEffectFn(F, I, N)
Definition: SpellScript.h:337
@ EFFECT_1
Definition: SharedDefines.h:32
@ SPELL_EFFECT_SCRIPT_EFFECT
Definition: SharedDefines.h:855
HookList< EffectHandler > OnEffectHitTarget
Definition: SpellScript.h:336
void HandleScript(SpellEffIndex)
Definition: boss_festergut.cpp:301

References EFFECT_1, HandleScript(), SpellScript::OnEffectHitTarget, SPELL_EFFECT_SCRIPT_EFFECT, and SpellEffectFn.