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

Private Member Functions

 PrepareAuraScript (spell_valkyr_essence_aura)
 
bool Validate (SpellInfo const *) override
 
void HandleAfterEffectAbsorb (AuraEffect *, DamageInfo &, uint32 &absorbAmount)
 
void Register () override
 

Additional Inherited Members

- Public Member Functions inherited from AuraScript
 AuraScript ()
 
bool _Validate (SpellInfo const *entry) override
 
bool _Load (Aura *aura)
 
void _PrepareScriptCall (AuraScriptHookType hookType, AuraApplication const *aurApp=nullptr)
 
void _FinishScriptCall ()
 
bool _IsDefaultActionPrevented ()
 
void PreventDefaultAction ()
 
SpellInfo const * GetSpellInfo () const
 
uint32 GetId () const
 
ObjectGuid GetCasterGUID () const
 
UnitGetCaster () const
 
WorldObjectGetOwner () const
 
UnitGetUnitOwner () const
 
DynamicObjectGetDynobjOwner () const
 
void Remove (uint32 removeMode=0)
 
AuraGetAura () const
 
AuraObjectType GetType () const
 
int32 GetDuration () const
 
void SetDuration (int32 duration, bool withMods=false)
 
void RefreshDuration ()
 
time_t GetApplyTime () const
 
int32 GetMaxDuration () const
 
void SetMaxDuration (int32 duration)
 
int32 CalcMaxDuration () const
 
bool IsExpired () const
 
bool IsPermanent () const
 
uint8 GetCharges () const
 
void SetCharges (uint8 charges)
 
uint8 CalcMaxCharges () const
 
bool ModCharges (int8 num, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
bool DropCharge (AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
uint8 GetStackAmount () const
 
void SetStackAmount (uint8 num)
 
bool ModStackAmount (int32 num, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
bool IsPassive () const
 
bool IsDeathPersistent () const
 
bool HasEffect (uint8 effIndex) const
 
AuraEffectGetEffect (uint8 effIndex) const
 
bool HasEffectType (AuraType type) const
 
UnitGetTarget () const
 
AuraApplication const * GetTargetApplication () const
 
- 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 AuraScript
HookList< CheckAreaTargetHandlerDoCheckAreaTarget
 
HookList< AuraDispelHandlerOnDispel
 
HookList< AuraDispelHandlerAfterDispel
 
HookList< EffectApplyHandlerOnEffectApply
 
HookList< EffectApplyHandlerAfterEffectApply
 
HookList< EffectApplyHandlerOnEffectRemove
 
HookList< EffectApplyHandlerAfterEffectRemove
 
HookList< EffectPeriodicHandlerOnEffectPeriodic
 
HookList< EffectUpdatePeriodicHandlerOnEffectUpdatePeriodic
 
HookList< EffectCalcAmountHandlerDoEffectCalcAmount
 
HookList< EffectCalcPeriodicHandlerDoEffectCalcPeriodic
 
HookList< EffectCalcSpellModHandlerDoEffectCalcSpellMod
 
HookList< EffectAbsorbHandlerOnEffectAbsorb
 
HookList< EffectAbsorbHandlerAfterEffectAbsorb
 
HookList< EffectManaShieldHandlerOnEffectManaShield
 
HookList< EffectManaShieldHandlerAfterEffectManaShield
 
HookList< EffectSplitHandlerOnEffectSplit
 
HookList< CheckProcHandlerDoCheckProc
 
HookList< AfterCheckProcHandlerDoAfterCheckProc
 
HookList< AuraProcHandlerDoPrepareProc
 
HookList< AuraProcHandlerOnProc
 
HookList< AuraProcHandlerAfterProc
 
HookList< EffectProcHandlerOnEffectProc
 
HookList< EffectProcHandlerAfterEffectProc
 
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

◆ HandleAfterEffectAbsorb()

void spell_valkyr_essence_aura::HandleAfterEffectAbsorb ( AuraEffect ,
DamageInfo ,
uint32 absorbAmount 
)
inlineprivate
743 {
744 uint16 count = absorbAmount / 1000;
745 if (!count || !GetOwner())
746 return;
747
748 if (SpellInfo const* se = GetAura()->GetSpellInfo())
749 if (Unit* owner = GetOwner()->ToUnit())
750 {
751 uint32 auraId = 0;
752 uint32 empoweredId = 0;
753 switch (se->Id)
754 {
755 case 65686:
756 auraId = 67590;
757 empoweredId = 65748;
758 break;
759 case 65684:
760 auraId = 67590;
761 empoweredId = 65724;
762 break;
763 case 67222:
764 auraId = 67602;
765 empoweredId = 65748;
766 break;
767 case 67176:
768 auraId = 67602;
769 empoweredId = 65724;
770 break;
771 case 67223:
772 auraId = 67603;
773 empoweredId = 65748;
774 break;
775 case 67177:
776 auraId = 67603;
777 empoweredId = 65724;
778 break;
779 case 67224:
780 auraId = 67604;
781 empoweredId = 65748;
782 break;
783 case 67178:
784 auraId = 67604;
785 empoweredId = 65724;
786 break;
787 }
788 if (!owner->HasAura(auraId))
789 {
790 owner->CastSpell(owner, SPELL_POWERING_UP, true);
791 if (--count == 0)
792 return;
793 }
794 if (Aura* aur = owner->GetAura(auraId))
795 {
796 if (aur->GetStackAmount() + count < 100 )
797 {
798 aur->ModStackAmount(count);
799
800 if (roll_chance_i(30)) // 30% chance to gain extra speed for collecting
801 owner->CastSpell(owner, SPELL_SURGE_OF_SPEED, true);
802 }
803 else
804 {
805 owner->CastSpell(owner, empoweredId, true);
806 aur->Remove();
807 }
808 }
809 }
810 }
bool roll_chance_i(int chance)
Definition: Random.h:59
std::uint32_t uint32
Definition: Define.h:107
std::uint16_t uint16
Definition: Define.h:108
@ SPELL_SURGE_OF_SPEED
Definition: boss_twin_valkyr.cpp:74
@ SPELL_POWERING_UP
Definition: boss_twin_valkyr.cpp:71
Definition: Unit.h:630
Definition: SpellAuras.h:87
Definition: SpellInfo.h:316
SpellInfo const * GetSpellInfo() const
Definition: SpellScript.cpp:1005
WorldObject * GetOwner() const
Definition: SpellScript.cpp:1025
Aura * GetAura() const
Definition: SpellScript.cpp:1045

References AuraScript::GetAura(), AuraScript::GetOwner(), AuraScript::GetSpellInfo(), roll_chance_i(), SPELL_POWERING_UP, and SPELL_SURGE_OF_SPEED.

Referenced by Register().

◆ PrepareAuraScript()

spell_valkyr_essence_aura::PrepareAuraScript ( spell_valkyr_essence_aura  )
private

◆ Register()

void spell_valkyr_essence_aura::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

813 {
815 }
@ EFFECT_0
Definition: SharedDefines.h:31
#define AuraEffectAbsorbFn(F, I)
Definition: SpellScript.h:790
HookList< EffectAbsorbHandler > AfterEffectAbsorb
Definition: SpellScript.h:795
void HandleAfterEffectAbsorb(AuraEffect *, DamageInfo &, uint32 &absorbAmount)
Definition: boss_twin_valkyr.cpp:742

References AuraScript::AfterEffectAbsorb, AuraEffectAbsorbFn, EFFECT_0, and HandleAfterEffectAbsorb().

◆ Validate()

bool spell_valkyr_essence_aura::Validate ( SpellInfo const *  )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

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

References SPELL_POWERING_UP, SPELL_SURGE_OF_SPEED, and _SpellScript::ValidateSpellInfo().