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 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
 
- 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
2712 {
2713 PreventHitDefaultEffect(effIndex);
2714 Player* target = GetHitPlayer();
2715 if (!target)
2716 return;
2717
2718 uint8 _reduceAmount = 0;
2719 switch (GetSpellInfo()->Id)
2720 {
2722 _reduceAmount = 9;
2723 break;
2725 _reduceAmount = 12;
2726 break;
2728 _reduceAmount = 3;
2729 break;
2731 _reduceAmount = 3;
2732 break;
2734 _reduceAmount = 2;
2735 break;
2737 _reduceAmount = 2;
2738 break;
2740 _reduceAmount = 4;
2741 break;
2743 // Teleported out of brain
2744 if (target->GetPositionZ() > 300.0f)
2745 return;
2746 else
2747 target->CastSpell(target, SPELL_CANCEL_ILLUSION_AURA, true); // else we are underground, remove illusion aura and teleport outside
2748 _reduceAmount = 100;
2749 break;
2750 }
2751
2752 if (Aura* aur = target->GetAura(SPELL_SANITY))
2753 {
2754 if ((aur->GetStackAmount() - _reduceAmount) <= 20)
2755 target->CastSpell(target, SPELL_SANITY_SCREEN_EFFECT, true);
2756 aur->ModStackAmount(-_reduceAmount);
2757 }
2758 }
std::uint8_t uint8
Definition Define.h:109
@ SPELL_BRAIN_LINK_DAMAGE
Definition boss_yoggsaron.cpp:81
@ SPELL_SANITY
Definition boss_yoggsaron.cpp:54
@ SPELL_CANCEL_ILLUSION_AURA
Definition boss_yoggsaron.cpp:128
@ SPELL_MALADY_OF_THE_MIND
Definition boss_yoggsaron.cpp:78
@ SPELL_MALADY_OF_THE_MIND_TRIGGER
Definition boss_yoggsaron.cpp:79
@ SPELL_SARA_PSYCHOSIS_10
Definition boss_yoggsaron.cpp:76
@ SPELL_SARA_PSYCHOSIS_25
Definition boss_yoggsaron.cpp:77
@ SPELL_INDUCE_MADNESS
Definition boss_yoggsaron.cpp:120
@ SPELL_LUNATIC_GAZE_TRIGGER
Definition boss_yoggsaron.cpp:2698
@ SPELL_YS_LUNATIC_GAZE_TRIGGER
Definition boss_yoggsaron.cpp:2699
@ SPELL_SANITY_SCREEN_EFFECT
Definition boss_yoggsaron.cpp:2697
Definition SpellAuras.h:87
Definition Player.h:1071
Player * GetHitPlayer()
Definition SpellScript.cpp:471
SpellInfo const * GetSpellInfo()
Definition SpellScript.cpp:411
void PreventHitDefaultEffect(SpellEffIndex effIndex)
Definition SpellScript.cpp:590
Aura * GetAura(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, ObjectGuid itemCasterGUID=ObjectGuid::Empty, uint8 reqEffMask=0) const
Definition Unit.cpp:5649
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:1194
float GetPositionZ() const
Definition Position.h:123

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.

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

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.

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

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


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