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

Private Member Functions

 PrepareSpellScript (spell_yogg_saron_sanity_reduce)
 
bool Validate (SpellInfo const *) override
 
void HandleScriptEffect (SpellEffIndex effIndex)
 
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_yogg_saron_sanity_reduce::HandleScriptEffect ( SpellEffIndex  effIndex)
inlineprivate
2717 {
2718 PreventHitDefaultEffect(effIndex);
2719 Player* target = GetHitPlayer();
2720 if (!target)
2721 return;
2722
2723 uint8 _reduceAmount = 0;
2724 switch (GetSpellInfo()->Id)
2725 {
2727 _reduceAmount = 9;
2728 break;
2730 _reduceAmount = 12;
2731 break;
2733 _reduceAmount = 3;
2734 break;
2736 _reduceAmount = 3;
2737 break;
2739 _reduceAmount = 2;
2740 break;
2742 _reduceAmount = 2;
2743 break;
2745 _reduceAmount = 4;
2746 break;
2748 // Teleported out of brain
2749 if (target->GetPositionZ() > 300.0f)
2750 return;
2751 else
2752 target->CastSpell(target, SPELL_CANCEL_ILLUSION_AURA, true); // else we are underground, remove illusion aura and teleport outside
2753 _reduceAmount = 100;
2754 break;
2755 }
2756
2757 if (Aura* aur = target->GetAura(SPELL_SANITY))
2758 {
2759 if ((aur->GetStackAmount() - _reduceAmount) <= 20)
2760 target->CastSpell(target, SPELL_SANITY_SCREEN_EFFECT, true);
2761 aur->ModStackAmount(-_reduceAmount);
2762 }
2763 }
std::uint8_t uint8
Definition: Define.h:109
@ SPELL_BRAIN_LINK_DAMAGE
Definition: boss_yoggsaron.cpp:80
@ SPELL_SANITY
Definition: boss_yoggsaron.cpp:53
@ SPELL_CANCEL_ILLUSION_AURA
Definition: boss_yoggsaron.cpp:128
@ SPELL_MALADY_OF_THE_MIND
Definition: boss_yoggsaron.cpp:77
@ SPELL_MALADY_OF_THE_MIND_TRIGGER
Definition: boss_yoggsaron.cpp:78
@ SPELL_SARA_PSYCHOSIS_10
Definition: boss_yoggsaron.cpp:75
@ SPELL_SARA_PSYCHOSIS_25
Definition: boss_yoggsaron.cpp:76
@ SPELL_INDUCE_MADNESS
Definition: boss_yoggsaron.cpp:120
@ SPELL_LUNATIC_GAZE_TRIGGER
Definition: boss_yoggsaron.cpp:2703
@ SPELL_YS_LUNATIC_GAZE_TRIGGER
Definition: boss_yoggsaron.cpp:2704
@ SPELL_SANITY_SCREEN_EFFECT
Definition: boss_yoggsaron.cpp:2702
float GetPositionZ() const
Definition: Position.h:119
Definition: Player.h:1064
Aura * GetAura(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, ObjectGuid itemCasterGUID=ObjectGuid::Empty, uint8 reqEffMask=0) const
Definition: Unit.cpp:5552
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:1168
Definition: SpellAuras.h:87
Player * GetHitPlayer()
Definition: SpellScript.cpp:471
SpellInfo const * GetSpellInfo()
Definition: SpellScript.cpp:411
void PreventHitDefaultEffect(SpellEffIndex effIndex)
Definition: SpellScript.cpp:590

References Unit::CastSpell(), Unit::GetAura(), SpellScript::GetHitPlayer(), Position::GetPositionZ(), SpellScript::GetSpellInfo(), SpellScript::PreventHitDefaultEffect(), SPELL_BRAIN_LINK_DAMAGE, SPELL_CANCEL_ILLUSION_AURA, SPELL_INDUCE_MADNESS, SPELL_LUNATIC_GAZE_TRIGGER, SPELL_MALADY_OF_THE_MIND, SPELL_MALADY_OF_THE_MIND_TRIGGER, SPELL_SANITY, SPELL_SANITY_SCREEN_EFFECT, SPELL_SARA_PSYCHOSIS_10, SPELL_SARA_PSYCHOSIS_25, and SPELL_YS_LUNATIC_GAZE_TRIGGER.

Referenced by Register().

◆ PrepareSpellScript()

spell_yogg_saron_sanity_reduce::PrepareSpellScript ( spell_yogg_saron_sanity_reduce  )
private

◆ Register()

void spell_yogg_saron_sanity_reduce::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

2766 {
2768 }
#define SpellEffectFn(F, I, N)
Definition: SpellScript.h:337
#define EFFECT_FIRST_FOUND
Definition: SharedDefines.h:37
@ SPELL_EFFECT_SCRIPT_EFFECT
Definition: SharedDefines.h:855
HookList< EffectHandler > OnEffectHitTarget
Definition: SpellScript.h:336
void HandleScriptEffect(SpellEffIndex effIndex)
Definition: boss_yoggsaron.cpp:2716

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

◆ Validate()

bool spell_yogg_saron_sanity_reduce::Validate ( SpellInfo const *  )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

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

References SPELL_CANCEL_ILLUSION_AURA, SPELL_SANITY_SCREEN_EFFECT, and _SpellScript::ValidateSpellInfo().