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

Private Member Functions

 PrepareAuraScript (spell_dk_pet_scaling)
 
void CalculateStatAmount (AuraEffect const *aurEff, int32 &amount, bool &)
 
void CalculateSPAmount (AuraEffect const *, int32 &amount, bool &)
 
void CalculateHasteAmount (AuraEffect const *, int32 &amount, bool &)
 
void HandleEffectApply (AuraEffect const *aurEff, AuraEffectHandleModes)
 
void CalcPeriodic (AuraEffect const *, bool &isPeriodic, int32 &amplitude)
 
void HandlePeriodic (AuraEffect const *aurEff)
 
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

◆ CalcPeriodic()

void spell_dk_pet_scaling::CalcPeriodic ( AuraEffect const *  ,
bool &  isPeriodic,
int32 amplitude 
)
inlineprivate
797 {
798 if (!GetUnitOwner()->IsPet())
799 return;
800
801 isPeriodic = true;
802 amplitude = 2 * IN_MILLISECONDS;
803 }
constexpr auto IN_MILLISECONDS
Definition: Common.h:62
Unit * GetUnitOwner() const
Definition: SpellScript.cpp:1030

References AuraScript::GetUnitOwner(), and IN_MILLISECONDS.

Referenced by Register().

◆ CalculateHasteAmount()

void spell_dk_pet_scaling::CalculateHasteAmount ( AuraEffect const *  ,
int32 amount,
bool &   
)
inlineprivate
771 {
772 // xinef: scale haste with owners melee haste
773 if (Unit* owner = GetUnitOwner()->GetOwner())
774 if (owner->m_modAttackSpeedPct[BASE_ATTACK] < 1.0f) // inherit haste only
775 amount = std::min<int32>(100, int32(((1.0f / owner->m_modAttackSpeedPct[BASE_ATTACK]) - 1.0f) * 100.0f));
776 }
std::int32_t int32
Definition: Define.h:104
@ BASE_ATTACK
Definition: Unit.h:396
Definition: Unit.h:1290
WorldObject * GetOwner() const
Definition: SpellScript.cpp:1025

References BASE_ATTACK, AuraScript::GetOwner(), and AuraScript::GetUnitOwner().

Referenced by Register().

◆ CalculateSPAmount()

void spell_dk_pet_scaling::CalculateSPAmount ( AuraEffect const *  ,
int32 amount,
bool &   
)
inlineprivate
749 {
750 // xinef: dk gargoyle inherits 33% of SP
751 if (GetUnitOwner()->GetEntry() != NPC_EBON_GARGOYLE)
752 return;
753
754 if (Unit* owner = GetUnitOwner()->GetOwner())
755 {
756 int32 modifier = 33;
757
758 // xinef: impurity
759 if (owner->GetDummyAuraEffect(SPELLFAMILY_DEATHKNIGHT, 1986, 0))
760 modifier = 40;
761
762 amount = CalculatePct(std::max<int32>(0, owner->GetTotalAttackPowerValue(BASE_ATTACK)), modifier);
763
764 // xinef: Update appropriate player field
765 if (owner->GetTypeId() == TYPEID_PLAYER)
766 owner->SetUInt32Value(PLAYER_PET_SPELL_POWER, (uint32)amount);
767 }
768 }
std::uint32_t uint32
Definition: Define.h:108
T CalculatePct(T base, U pct)
Definition: Util.h:61
@ TYPEID_PLAYER
Definition: ObjectGuid.h:38
@ PLAYER_PET_SPELL_POWER
Definition: UpdateFields.h:391
@ NPC_EBON_GARGOYLE
Definition: PetDefines.h:123
@ SPELLFAMILY_DEATHKNIGHT
Definition: SharedDefines.h:3515

References BASE_ATTACK, CalculatePct(), AuraScript::GetOwner(), AuraScript::GetUnitOwner(), NPC_EBON_GARGOYLE, PLAYER_PET_SPELL_POWER, SPELLFAMILY_DEATHKNIGHT, and TYPEID_PLAYER.

Referenced by Register().

◆ CalculateStatAmount()

void spell_dk_pet_scaling::CalculateStatAmount ( AuraEffect const *  aurEff,
int32 amount,
bool &   
)
inlineprivate
716 {
717 Stats stat = Stats(aurEff->GetSpellInfo()->Effects[aurEff->GetEffIndex()].MiscValue);
718
719 // xinef: dk ghoul inherits 70% of strength and 30% of stamina
720 if (GetUnitOwner()->GetEntry() != NPC_RISEN_GHOUL)
721 {
722 // xinef: ebon garogyle - inherit 30% of stamina
723 if (GetUnitOwner()->GetEntry() == NPC_EBON_GARGOYLE && stat == STAT_STAMINA)
724 if (Unit* owner = GetUnitOwner()->GetOwner())
725 amount = CalculatePct(std::max<int32>(0, owner->GetStat(stat)), 30);
726 return;
727 }
728
729 if (Unit* owner = GetUnitOwner()->GetOwner())
730 {
731 int32 modifier = stat == STAT_STRENGTH ? 70 : 30;
732
733 // Check just if owner has Ravenous Dead since it's effect is not an aura
734 if (AuraEffect const* rdEff = owner->GetAuraEffect(SPELL_AURA_MOD_TOTAL_STAT_PERCENTAGE, SPELLFAMILY_DEATHKNIGHT, 3010, 0))
735 {
736 SpellInfo const* spellInfo = rdEff->GetSpellInfo(); // Then get the SpellProto and add the dummy effect value
737 AddPct(modifier, spellInfo->Effects[EFFECT_1].CalcValue()); // Ravenous Dead edits the original scale
738 }
739
740 // xinef: Glyph of the Ghoul
741 if (AuraEffect const* glyphEff = owner->GetAuraEffect(SPELL_DK_GLYPH_OF_THE_GHOUL, EFFECT_0))
742 modifier += glyphEff->GetAmount();
743
744 amount = CalculatePct(std::max<int32>(0, owner->GetStat(stat)), modifier);
745 }
746 }
T AddPct(T &base, U pct)
Definition: Util.h:67
@ NPC_RISEN_GHOUL
Definition: PetDefines.h:120
@ SPELL_AURA_MOD_TOTAL_STAT_PERCENTAGE
Definition: SpellAuraDefines.h:200
@ SPELL_DK_GLYPH_OF_THE_GHOUL
Definition: spell_dk.cpp:39
@ EFFECT_1
Definition: SharedDefines.h:31
@ EFFECT_0
Definition: SharedDefines.h:30
Stats
Definition: SharedDefines.h:229
@ STAT_STRENGTH
Definition: SharedDefines.h:230
@ STAT_STAMINA
Definition: SharedDefines.h:232
Definition: SpellAuraEffects.h:39
Definition: SpellInfo.h:314
std::array< SpellEffectInfo, MAX_SPELL_EFFECTS > Effects
Definition: SpellInfo.h:391

References AddPct(), CalculatePct(), EFFECT_0, EFFECT_1, SpellInfo::Effects, AuraEffect::GetEffIndex(), AuraScript::GetOwner(), AuraEffect::GetSpellInfo(), AuraScript::GetUnitOwner(), NPC_EBON_GARGOYLE, NPC_RISEN_GHOUL, SPELL_AURA_MOD_TOTAL_STAT_PERCENTAGE, SPELL_DK_GLYPH_OF_THE_GHOUL, SPELLFAMILY_DEATHKNIGHT, STAT_STAMINA, and STAT_STRENGTH.

Referenced by Register().

◆ HandleEffectApply()

void spell_dk_pet_scaling::HandleEffectApply ( AuraEffect const *  aurEff,
AuraEffectHandleModes   
)
inlineprivate
779 {
780 if (aurEff->GetAuraType() != SPELL_AURA_MELEE_SLOW)
781 return;
782
786
787 if (GetUnitOwner()->IsPet())
788 return;
789
794 }
@ SPELL_AURA_MOD_ATTACK_POWER
Definition: SpellAuraDefines.h:162
@ SPELL_AURA_MELEE_SLOW
Definition: SpellAuraDefines.h:256
@ SPELL_AURA_MOD_STAT
Definition: SpellAuraDefines.h:92
@ SPELL_AURA_MOD_MELEE_RANGED_HASTE
Definition: SpellAuraDefines.h:255
@ SPELL_AURA_MOD_CASTING_SPEED_NOT_STACK
Definition: SpellAuraDefines.h:128
@ SPELL_AURA_MOD_ATTACK_POWER_PCT
Definition: SpellAuraDefines.h:229
@ SPELL_BLOCK_TYPE_POSITIVE
Definition: SpellDefines.h:157
@ IMMUNITY_STATE
Definition: SharedDefines.h:1367
void ApplySpellImmune(uint32 spellId, uint32 op, uint32 type, bool apply, SpellImmuneBlockType blockType=SPELL_BLOCK_TYPE_ALL)
Definition: Unit.cpp:13300

References Unit::ApplySpellImmune(), AuraEffect::GetAuraType(), AuraScript::GetUnitOwner(), IMMUNITY_STATE, SPELL_AURA_MELEE_SLOW, SPELL_AURA_MOD_ATTACK_POWER, SPELL_AURA_MOD_ATTACK_POWER_PCT, SPELL_AURA_MOD_CASTING_SPEED_NOT_STACK, SPELL_AURA_MOD_MELEE_RANGED_HASTE, SPELL_AURA_MOD_STAT, SPELL_AURA_MOD_TOTAL_STAT_PERCENTAGE, and SPELL_BLOCK_TYPE_POSITIVE.

Referenced by Register().

◆ HandlePeriodic()

void spell_dk_pet_scaling::HandlePeriodic ( AuraEffect const *  aurEff)
inlineprivate
806 {
808 if (aurEff->GetAuraType() == SPELL_AURA_MOD_STAT && (aurEff->GetMiscValue() == STAT_STAMINA || aurEff->GetMiscValue() == STAT_INTELLECT))
809 {
810 int32 currentAmount = aurEff->GetAmount();
811 int32 newAmount = GetEffect(aurEff->GetEffIndex())->CalculateAmount(GetCaster());
812 if (newAmount != currentAmount)
813 {
814 if (aurEff->GetMiscValue() == STAT_STAMINA)
815 {
816 uint32 actStat = GetUnitOwner()->GetHealth();
817 GetEffect(aurEff->GetEffIndex())->ChangeAmount(newAmount, false);
818 GetUnitOwner()->SetHealth(std::min<uint32>(GetUnitOwner()->GetMaxHealth(), actStat));
819 }
820 else
821 {
823 GetEffect(aurEff->GetEffIndex())->ChangeAmount(newAmount, false);
824 GetUnitOwner()->SetPower(POWER_MANA, std::min<uint32>(GetUnitOwner()->GetMaxPower(POWER_MANA), actStat));
825 }
826 }
827 }
828 else
829 GetEffect(aurEff->GetEffIndex())->RecalculateAmount();
830 }
@ POWER_MANA
Definition: SharedDefines.h:241
@ STAT_INTELLECT
Definition: SharedDefines.h:233
void SetPower(Powers power, uint32 val, bool withPowerUpdate=true, bool fromRegenerate=false)
Definition: Unit.cpp:15458
void SetHealth(uint32 val)
Definition: Unit.cpp:15370
uint32 GetHealth() const
Definition: Unit.h:1440
uint32 GetPower(Powers power) const
Definition: Unit.h:1461
void ChangeAmount(int32 newAmount, bool mark=true, bool onStackOrReapply=false)
Definition: SpellAuraEffects.cpp:702
int32 CalculateAmount(Unit *caster)
Definition: SpellAuraEffects.cpp:452
void RecalculateAmount()
Definition: SpellAuraEffects.h:75
void PreventDefaultAction()
Definition: SpellScript.cpp:985
Unit * GetCaster() const
Definition: SpellScript.cpp:1020
AuraEffect * GetEffect(uint8 effIndex) const
Definition: SpellScript.cpp:1155

References AuraEffect::CalculateAmount(), AuraEffect::ChangeAmount(), AuraEffect::GetAmount(), AuraEffect::GetAuraType(), AuraScript::GetCaster(), AuraScript::GetEffect(), AuraEffect::GetEffIndex(), Unit::GetHealth(), AuraEffect::GetMiscValue(), Unit::GetPower(), AuraScript::GetUnitOwner(), POWER_MANA, AuraScript::PreventDefaultAction(), AuraEffect::RecalculateAmount(), Unit::SetHealth(), Unit::SetPower(), SPELL_AURA_MOD_STAT, STAT_INTELLECT, and STAT_STAMINA.

Referenced by Register().

◆ PrepareAuraScript()

spell_dk_pet_scaling::PrepareAuraScript ( spell_dk_pet_scaling  )
private

◆ Register()

void spell_dk_pet_scaling::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

833 {
834 if (m_scriptSpellId == 54566)
835 {
838 }
839
840 if (m_scriptSpellId == 51996)
842
846 }
@ SPELL_AURA_MOD_DAMAGE_DONE
Definition: SpellAuraDefines.h:76
@ AURA_EFFECT_HANDLE_REAL
Definition: SpellAuraDefines.h:42
#define AuraEffectCalcAmountFn(F, I, N)
Definition: SpellScript.h:772
#define AuraEffectPeriodicFn(F, I, N)
Definition: SpellScript.h:760
#define AuraEffectCalcPeriodicFn(F, I, N)
Definition: SpellScript.h:778
#define AuraEffectApplyFn(F, I, N, M)
Definition: SpellScript.h:743
#define SPELL_AURA_ANY
Definition: SpellScript.h:43
#define EFFECT_ALL
Definition: SharedDefines.h:37
uint32 m_scriptSpellId
Definition: SpellScript.h:107
HookList< EffectCalcPeriodicHandler > DoEffectCalcPeriodic
Definition: SpellScript.h:777
HookList< EffectPeriodicHandler > OnEffectPeriodic
Definition: SpellScript.h:759
HookList< EffectCalcAmountHandler > DoEffectCalcAmount
Definition: SpellScript.h:771
HookList< EffectApplyHandler > OnEffectApply
Definition: SpellScript.h:738
void CalcPeriodic(AuraEffect const *, bool &isPeriodic, int32 &amplitude)
Definition: spell_dk.cpp:796
void CalculateHasteAmount(AuraEffect const *, int32 &amount, bool &)
Definition: spell_dk.cpp:770
void CalculateStatAmount(AuraEffect const *aurEff, int32 &amount, bool &)
Definition: spell_dk.cpp:715
void CalculateSPAmount(AuraEffect const *, int32 &amount, bool &)
Definition: spell_dk.cpp:748
void HandlePeriodic(AuraEffect const *aurEff)
Definition: spell_dk.cpp:805
void HandleEffectApply(AuraEffect const *aurEff, AuraEffectHandleModes)
Definition: spell_dk.cpp:778

References AURA_EFFECT_HANDLE_REAL, AuraEffectApplyFn, AuraEffectCalcAmountFn, AuraEffectCalcPeriodicFn, AuraEffectPeriodicFn, CalcPeriodic(), CalculateHasteAmount(), CalculateSPAmount(), CalculateStatAmount(), AuraScript::DoEffectCalcAmount, AuraScript::DoEffectCalcPeriodic, EFFECT_ALL, HandleEffectApply(), HandlePeriodic(), _SpellScript::m_scriptSpellId, AuraScript::OnEffectApply, AuraScript::OnEffectPeriodic, SPELL_AURA_ANY, SPELL_AURA_MELEE_SLOW, SPELL_AURA_MOD_DAMAGE_DONE, and SPELL_AURA_MOD_STAT.