TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
spell_putricide_mutated_plague::spell_putricide_mutated_plague_AuraScript Class Reference

Private Member Functions

 PrepareAuraScript (spell_putricide_mutated_plague_AuraScript)
 
void HandleTriggerSpell (AuraEffect const *aurEff)
 
void OnRemove (AuraEffect const *, AuraEffectHandleModes)
 
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=NULL)
 
void _FinishScriptCall ()
 
bool _IsDefaultActionPrevented ()
 
void PreventDefaultAction ()
 
SpellInfo constGetSpellInfo () const
 
uint32 GetId () const
 
ObjectGuid GetCasterGUID () const
 
UnitGetCaster () const
 
WorldObjectGetOwner () const
 
UnitGetUnitOwner () const
 
DynamicObjectGetDynobjOwner () const
 
void Remove (AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
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 constGetTargetApplication () 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 bool Validate (SpellInfo const *)
 
virtual bool Load ()
 
virtual void Unload ()
 
- Public Attributes inherited from AuraScript
HookList< CheckAreaTargetHandlerDoCheckAreaTarget
 
HookList< AuraDispelHandlerOnDispel
 
HookList< AuraDispelHandlerAfterDispel
 
HookList< EffectApplyHandlerOnEffectApply
 
HookList< EffectApplyHandlerAfterEffectApply
 
HookList< EffectApplyHandlerOnEffectRemove
 
HookList< EffectApplyHandlerAfterEffectRemove
 
HookList< EffectPeriodicHandlerOnEffectPeriodic
 
HookList
< EffectUpdatePeriodicHandler
OnEffectUpdatePeriodic
 
HookList< EffectCalcAmountHandlerDoEffectCalcAmount
 
HookList
< EffectCalcPeriodicHandler
DoEffectCalcPeriodic
 
HookList
< EffectCalcSpellModHandler
DoEffectCalcSpellMod
 
HookList< EffectAbsorbHandlerOnEffectAbsorb
 
HookList< EffectAbsorbHandlerAfterEffectAbsorb
 
HookList< EffectManaShieldHandlerOnEffectManaShield
 
HookList< EffectManaShieldHandlerAfterEffectManaShield
 
HookList< EffectSplitHandlerOnEffectSplit
 
HookList< CheckProcHandlerDoCheckProc
 
HookList< AuraProcHandlerDoPrepareProc
 
HookList< AuraProcHandlerOnProc
 
HookList< AuraProcHandlerAfterProc
 
HookList< EffectProcHandlerOnEffectProc
 
HookList< EffectProcHandlerAfterEffectProc
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string constm_scriptName
 
uint32 m_scriptSpellId
 

Member Function Documentation

void spell_putricide_mutated_plague::spell_putricide_mutated_plague_AuraScript::HandleTriggerSpell ( AuraEffect const aurEff)
inlineprivate
1250  {
1252  Unit* caster = GetCaster();
1253  if (!caster)
1254  return;
1255 
1256  uint32 triggerSpell = GetSpellInfo()->GetEffect(aurEff->GetEffIndex())->TriggerSpell;
1257  SpellInfo const* spell = sSpellMgr->AssertSpellInfo(triggerSpell);
1258 
1259  int32 damage = spell->GetEffect(EFFECT_0)->CalcValue(caster);
1260  float multiplier = 2.0f;
1261  if (GetTarget()->GetMap()->GetSpawnMode() & 1)
1262  multiplier = 3.0f;
1263 
1264  damage *= int32(pow(multiplier, GetStackAmount()));
1265  damage = int32(damage * 1.5f);
1266 
1267  GetTarget()->CastCustomSpell(triggerSpell, SPELLVALUE_BASE_POINT0, damage, GetTarget(), true, NULL, aurEff, GetCasterGUID());
1268  }
Definition: SpellInfo.h:326
Definition: SharedDefines.h:28
void PreventDefaultAction()
Definition: SpellScript.cpp:971
arena_t NULL
Definition: jemalloc_internal.h:624
uint8 GetStackAmount() const
Definition: SpellScript.cpp:1111
Unit * GetTarget() const
Definition: SpellScript.cpp:1151
#define sSpellMgr
Definition: SpellMgr.h:756
SpellInfo const * GetSpellInfo() const
Definition: SpellScript.cpp:991
int32_t int32
Definition: Define.h:146
uint32_t uint32
Definition: Define.h:150
SpellEffectInfo const * GetEffect(uint32 difficulty, uint32 index) const
Definition: SpellInfo.cpp:3348
int32 CalcValue(Unit const *caster=nullptr, int32 const *basePoints=nullptr, Unit const *target=nullptr, float *variance=nullptr, int32 itemLevel=-1) const
Definition: SpellInfo.cpp:455
G3D::Quat pow(const G3D::Quat &q, double x)
Definition: Quat.h:761
Unit * GetCaster() const
Definition: SpellScript.cpp:1006
int32_t int32
Definition: g3dmath.h:167
ObjectGuid GetCasterGUID() const
Definition: SpellScript.cpp:1001
Definition: Unit.h:1305
void CastCustomSpell(Unit *victim, uint32 spellId, int32 const *bp0, int32 const *bp1, int32 const *bp2, bool triggered, Item *castItem=NULL, AuraEffect const *triggeredByAura=NULL, ObjectGuid originalCaster=ObjectGuid::Empty)
Definition: Unit.cpp:920
Definition: Unit.h:129

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void spell_putricide_mutated_plague::spell_putricide_mutated_plague_AuraScript::OnRemove ( AuraEffect const ,
AuraEffectHandleModes   
)
inlineprivate
1271  {
1272  uint32 healSpell = uint32(GetSpellInfo()->GetEffect(EFFECT_0)->CalcValue());
1273  SpellInfo const* healSpellInfo = sSpellMgr->GetSpellInfo(healSpell);
1274 
1275  if (!healSpellInfo)
1276  return;
1277 
1278  int32 heal = healSpellInfo->GetEffect(EFFECT_0)->CalcValue() * GetStackAmount();
1280  }
Definition: SpellInfo.h:326
Definition: SharedDefines.h:28
AuraEffect * GetEffect(uint8 effIndex) const
Definition: SpellScript.cpp:1141
arena_t NULL
Definition: jemalloc_internal.h:624
uint8 GetStackAmount() const
Definition: SpellScript.cpp:1111
Unit * GetTarget() const
Definition: SpellScript.cpp:1151
#define sSpellMgr
Definition: SpellMgr.h:756
SpellInfo const * GetSpellInfo() const
Definition: SpellScript.cpp:991
int32_t int32
Definition: Define.h:146
uint32_t uint32
Definition: Define.h:150
SpellEffectInfo const * GetEffect(uint32 difficulty, uint32 index) const
Definition: SpellInfo.cpp:3348
int32 CalcValue(Unit const *caster=nullptr, int32 const *basePoints=nullptr, Unit const *target=nullptr, float *variance=nullptr, int32 itemLevel=-1) const
Definition: SpellInfo.cpp:455
uint32_t uint32
Definition: g3dmath.h:168
ObjectGuid GetCasterGUID() const
Definition: SpellScript.cpp:1001
void CastCustomSpell(Unit *victim, uint32 spellId, int32 const *bp0, int32 const *bp1, int32 const *bp2, bool triggered, Item *castItem=NULL, AuraEffect const *triggeredByAura=NULL, ObjectGuid originalCaster=ObjectGuid::Empty)
Definition: Unit.cpp:920
Definition: Unit.h:129

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

spell_putricide_mutated_plague::spell_putricide_mutated_plague_AuraScript::PrepareAuraScript ( spell_putricide_mutated_plague_AuraScript  )
private
void spell_putricide_mutated_plague::spell_putricide_mutated_plague_AuraScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

1283  {
1286  }
void HandleTriggerSpell(AuraEffect const *aurEff)
Definition: boss_professor_putricide.cpp:1249
Definition: SharedDefines.h:28
#define AuraEffectRemoveFn(F, I, N, M)
Definition: SpellScript.h:704
Definition: SpellAuraDefines.h:83
HookList< EffectApplyHandler > AfterEffectRemove
Definition: SpellScript.h:703
Definition: SpellAuraDefines.h:39
HookList< EffectPeriodicHandler > OnEffectPeriodic
Definition: SpellScript.h:709
void OnRemove(AuraEffect const *, AuraEffectHandleModes)
Definition: boss_professor_putricide.cpp:1270
#define AuraEffectPeriodicFn(F, I, N)
Definition: SpellScript.h:710

+ Here is the call graph for this function:


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