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

Private Member Functions

 PrepareSpellScript (spell_item_venomhide_feed) SpellCastResult CheckCast()
 
void UpdateTarget (WorldObject *&target)
 
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 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 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

◆ PrepareSpellScript()

spell_item_venomhide_feed::PrepareSpellScript ( spell_item_venomhide_feed  )
inlineprivate
4123 {
4124 if (Player* player = GetCaster()->ToPlayer())
4125 {
4126 std::list<Creature*> hatchling;
4127 player->GetAllMinionsByEntry(hatchling, NPC_VENOMHIDE_HATCHLING);
4128 if (!hatchling.empty())
4129 {
4130 return SPELL_CAST_OK;
4131 }
4132 }
4133
4135 }
@ SPELL_FAILED_BAD_TARGETS
Definition SharedDefines.h:949
@ SPELL_CAST_OK
Definition SharedDefines.h:1126
Definition Player.h:1086
Unit * GetCaster()
Definition SpellScript.cpp:401
@ NPC_VENOMHIDE_HATCHLING
Definition spell_item.cpp:4115

References SpellScript::GetCaster(), NPC_VENOMHIDE_HATCHLING, SPELL_CAST_OK, and SPELL_FAILED_BAD_TARGETS.

◆ Register()

void spell_item_venomhide_feed::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

4165 {
4166 OnCheckCast += SpellCheckCastFn(spell_item_venomhide_feed::CheckCast);
4168 }
@ EFFECT_0
Definition SharedDefines.h:31
@ TARGET_UNIT_NEARBY_ENTRY
Definition SharedDefines.h:1446
#define SpellObjectTargetSelectFn(F, I, N)
Definition SpellScript.h:359
#define SpellCheckCastFn(F)
Definition SpellScript.h:329
HookList< CheckCastHandler > OnCheckCast
Definition SpellScript.h:328
HookList< ObjectTargetSelectHandler > OnObjectTargetSelect
Definition SpellScript.h:358
void UpdateTarget(WorldObject *&target)
Definition spell_item.cpp:4137

References EFFECT_0, SpellScript::OnCheckCast, SpellScript::OnObjectTargetSelect, SpellCheckCastFn, SpellObjectTargetSelectFn, TARGET_UNIT_NEARBY_ENTRY, and UpdateTarget().

◆ UpdateTarget()

void spell_item_venomhide_feed::UpdateTarget ( WorldObject *&  target)
inlineprivate
4138 {
4139 if (!target)
4140 {
4141 return;
4142 }
4143
4144 if (Player* player = GetCaster()->ToPlayer())
4145 {
4146 std::list<Creature*> hatchling;
4147 player->GetAllMinionsByEntry(hatchling, NPC_VENOMHIDE_HATCHLING);
4148 if (hatchling.empty())
4149 {
4150 return;
4151 }
4152
4153 for (Creature* creature : hatchling)
4154 {
4155 if (creature)
4156 {
4157 target = creature;
4158 return;
4159 }
4160 }
4161 }
4162 }
Definition Creature.h:47

References SpellScript::GetCaster(), and NPC_VENOMHIDE_HATCHLING.

Referenced by Register().


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