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 FilterTargets (std::list< WorldObject * > &targets)
 
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
 
Unit * GetCaster ()
 
GameObject * GetGObjCaster ()
 
Unit * GetOriginalCaster ()
 
SpellInfo const * GetSpellInfo ()
 
SpellValue const * GetSpellValue ()
 
WorldLocation const * GetExplTargetDest ()
 
void SetExplTargetDest (WorldLocation &loc)
 
WorldObject * GetExplTargetWorldObject ()
 
Unit * GetExplTargetUnit ()
 
GameObject * GetExplTargetGObj ()
 
Item * GetExplTargetItem ()
 
Unit * GetHitUnit ()
 
Creature * GetHitCreature ()
 
Player * GetHitPlayer ()
 
Item * GetHitItem ()
 
GameObject * GetHitGObj ()
 
WorldLocation * GetHitDest ()
 
int32 GetHitDamage ()
 
void SetHitDamage (int32 damage)
 
void PreventHitDamage ()
 
int32 GetHitHeal ()
 
void SetHitHeal (int32 heal)
 
void PreventHitHeal ()
 
Spell * GetSpell ()
 
Aura * GetHitAura ()
 
void PreventHitAura ()
 
void PreventHitEffect (SpellEffIndex effIndex)
 
void PreventHitDefaultEffect (SpellEffIndex effIndex)
 
int32 GetEffectValue () const
 
void SetEffectValue (int32 value)
 
Item * GetCastItem ()
 
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< CastHandler > BeforeCast
 
HookList< CastHandler > OnCast
 
HookList< CastHandler > AfterCast
 
HookList< CheckCastHandler > OnCheckCast
 
HookList< EffectHandler > OnEffectLaunch
 
HookList< EffectHandler > OnEffectLaunchTarget
 
HookList< EffectHandler > OnEffectHit
 
HookList< EffectHandler > OnEffectHitTarget
 
HookList< BeforeHitHandler > BeforeHit
 
HookList< HitHandler > OnHit
 
HookList< HitHandler > AfterHit
 
HookList< ObjectAreaTargetSelectHandler > OnObjectAreaTargetSelect
 
HookList< ObjectTargetSelectHandler > OnObjectTargetSelect
 
HookList< DestinationTargetSelectHandler > OnDestinationTargetSelect
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string const * m_scriptName
 
uint32 m_scriptSpellId
 

Detailed Description

Member Function Documentation

◆ FilterTargets()

void spell_yogg_saron_sanity_reduce::FilterTargets ( std::list< WorldObject * > &  targets)
inlineprivate
2899 {
2900 targets.remove_if([](WorldObject* target)
2901 {
2902 Unit* unit = target->ToUnit();
2903 if (!unit)
2904 return true;
2905
2906 Aura* sanity = unit->GetAura(SPELL_SANITY);
2907 return !sanity || sanity->GetStackAmount() <= 40;
2908 });
2909 }
@ SPELL_SANITY
Definition boss_yoggsaron.cpp:56
Definition SpellAuras.h:88
uint8 GetStackAmount() const
Definition SpellAuras.h:149
Unit * ToUnit()
Definition Object.h:216
Definition Unit.h:665
Aura * GetAura(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, ObjectGuid itemCasterGUID=ObjectGuid::Empty, uint8 reqEffMask=0) const
Definition Unit.cpp:5624
Definition Object.h:482

References Unit::GetAura(), Aura::GetStackAmount(), SPELL_SANITY, and Object::ToUnit().

Referenced by Register().

◆ HandleScriptEffect()

void spell_yogg_saron_sanity_reduce::HandleScriptEffect ( SpellEffIndex  effIndex)
inlineprivate
2848 {
2849 PreventHitDefaultEffect(effIndex);
2850 Player* target = GetHitPlayer();
2851 if (!target)
2852 return;
2853
2854 uint8 _reduceAmount = 0;
2855 switch (GetSpellInfo()->Id)
2856 {
2858 _reduceAmount = 9;
2859 break;
2861 _reduceAmount = 12;
2862 break;
2864 _reduceAmount = 3;
2865 break;
2867 _reduceAmount = 3;
2868 break;
2870 _reduceAmount = 2;
2871 break;
2873 _reduceAmount = 2;
2874 break;
2876 _reduceAmount = 4;
2877 break;
2879 // Teleported out of brain
2880 if (target->GetPositionZ() > 300.0f)
2881 return;
2882 else
2883 target->CastSpell(target, SPELL_CANCEL_ILLUSION_AURA, true); // else we are underground, remove illusion aura and teleport outside
2884 _reduceAmount = 100;
2885 break;
2886 }
2887
2888 if (Aura* aur = target->GetAura(SPELL_SANITY))
2889 {
2890 if ((aur->GetStackAmount() - _reduceAmount) <= 20)
2891 target->CastSpell(target, SPELL_SANITY_SCREEN_EFFECT, true);
2892 aur->ModStackAmount(-_reduceAmount);
2893 }
2894 }
std::uint8_t uint8
Definition Define.h:109
@ SPELL_BRAIN_LINK_DAMAGE
Definition boss_yoggsaron.cpp:85
@ SPELL_CANCEL_ILLUSION_AURA
Definition boss_yoggsaron.cpp:140
@ SPELL_MALADY_OF_THE_MIND
Definition boss_yoggsaron.cpp:82
@ SPELL_MALADY_OF_THE_MIND_TRIGGER
Definition boss_yoggsaron.cpp:83
@ SPELL_SARA_PSYCHOSIS_10
Definition boss_yoggsaron.cpp:80
@ SPELL_SARA_PSYCHOSIS_25
Definition boss_yoggsaron.cpp:81
@ SPELL_INDUCE_MADNESS
Definition boss_yoggsaron.cpp:132
@ SPELL_LUNATIC_GAZE_TRIGGER
Definition boss_yoggsaron.cpp:2834
@ SPELL_YS_LUNATIC_GAZE_TRIGGER
Definition boss_yoggsaron.cpp:2835
@ SPELL_SANITY_SCREEN_EFFECT
Definition boss_yoggsaron.cpp:2833
Definition Player.h:1086
Player * GetHitPlayer()
Definition SpellScript.cpp:476
SpellInfo const * GetSpellInfo()
Definition SpellScript.cpp:416
void PreventHitDefaultEffect(SpellEffIndex effIndex)
Definition SpellScript.cpp:595
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:1372
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.

2912 {
2914
2917 }
#define EFFECT_FIRST_FOUND
Definition SharedDefines.h:37
@ SPELL_EFFECT_SCRIPT_EFFECT
Definition SharedDefines.h:843
@ TARGET_UNIT_SRC_AREA_ENEMY
Definition SharedDefines.h:1424
#define EFFECT_ALL
Definition SharedDefines.h:38
#define SpellEffectFn(F, I, N)
Definition SpellScript.h:337
#define SpellObjectAreaTargetSelectFn(F, I, N)
Definition SpellScript.h:354
HookList< EffectHandler > OnEffectHitTarget
Definition SpellScript.h:336
HookList< ObjectAreaTargetSelectHandler > OnObjectAreaTargetSelect
Definition SpellScript.h:353
uint32 m_scriptSpellId
Definition SpellScript.h:107
void FilterTargets(std::list< WorldObject * > &targets)
Definition boss_yoggsaron.cpp:2898
void HandleScriptEffect(SpellEffIndex effIndex)
Definition boss_yoggsaron.cpp:2847

References EFFECT_ALL, EFFECT_FIRST_FOUND, FilterTargets(), HandleScriptEffect(), _SpellScript::m_scriptSpellId, SpellScript::OnEffectHitTarget, SpellScript::OnObjectAreaTargetSelect, SPELL_EFFECT_SCRIPT_EFFECT, SPELL_MALADY_OF_THE_MIND, SPELL_SARA_PSYCHOSIS_10, SPELL_SARA_PSYCHOSIS_25, SpellEffectFn, SpellObjectAreaTargetSelectFn, and TARGET_UNIT_SRC_AREA_ENEMY.

◆ Validate()

bool spell_yogg_saron_sanity_reduce::Validate ( SpellInfo const *  )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

2843 {
2845 }
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: