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
 
UnitGetCaster ()
 
UnitGetOriginalCaster ()
 
SpellInfo const * GetSpellInfo ()
 
SpellValue const * GetSpellValue ()
 
WorldLocation const * GetExplTargetDest ()
 
void SetExplTargetDest (WorldLocation &loc)
 
WorldObjectGetExplTargetWorldObject ()
 
UnitGetExplTargetUnit ()
 
GameObjectGetExplTargetGObj ()
 
ItemGetExplTargetItem ()
 
UnitGetHitUnit ()
 
CreatureGetHitCreature ()
 
PlayerGetHitPlayer ()
 
ItemGetHitItem ()
 
GameObjectGetHitGObj ()
 
WorldLocationGetHitDest ()
 
int32 GetHitDamage ()
 
void SetHitDamage (int32 damage)
 
void PreventHitDamage ()
 
int32 GetHitHeal ()
 
void SetHitHeal (int32 heal)
 
void PreventHitHeal ()
 
SpellGetSpell ()
 
AuraGetHitAura ()
 
void PreventHitAura ()
 
void PreventHitEffect (SpellEffIndex effIndex)
 
void PreventHitDefaultEffect (SpellEffIndex effIndex)
 
int32 GetEffectValue () const
 
void SetEffectValue (int32 value)
 
ItemGetCastItem ()
 
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< CastHandlerBeforeCast
 
HookList< CastHandlerOnCast
 
HookList< CastHandlerAfterCast
 
HookList< CheckCastHandlerOnCheckCast
 
HookList< EffectHandlerOnEffectLaunch
 
HookList< EffectHandlerOnEffectLaunchTarget
 
HookList< EffectHandlerOnEffectHit
 
HookList< EffectHandlerOnEffectHitTarget
 
HookList< BeforeHitHandlerBeforeHit
 
HookList< HitHandlerOnHit
 
HookList< HitHandlerAfterHit
 
HookList< ObjectAreaTargetSelectHandlerOnObjectAreaTargetSelect
 
HookList< ObjectTargetSelectHandlerOnObjectTargetSelect
 
HookList< DestinationTargetSelectHandlerOnDestinationTargetSelect
 
- 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
3914 {
3915 if (Player* player = GetCaster()->ToPlayer())
3916 {
3917 std::list<Creature*> hatchling;
3918 player->GetAllMinionsByEntry(hatchling, NPC_VENOMHIDE_HATCHLING);
3919 if (!hatchling.empty())
3920 {
3921 return SPELL_CAST_OK;
3922 }
3923 }
3924
3926 }
@ SPELL_FAILED_BAD_TARGETS
Definition SharedDefines.h:972
@ SPELL_CAST_OK
Definition SharedDefines.h:1149
Definition Player.h:1072
Unit * GetCaster()
Definition SpellScript.cpp:401
@ NPC_VENOMHIDE_HATCHLING
Definition spell_item.cpp:3906

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

◆ Register()

void spell_item_venomhide_feed::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

3956 {
3957 OnCheckCast += SpellCheckCastFn(spell_item_venomhide_feed::CheckCast);
3959 }
@ EFFECT_0
Definition SharedDefines.h:31
@ TARGET_UNIT_NEARBY_ENTRY
Definition SharedDefines.h:1453
#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:3928

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
3929 {
3930 if (!target)
3931 {
3932 return;
3933 }
3934
3935 if (Player* player = GetCaster()->ToPlayer())
3936 {
3937 std::list<Creature*> hatchling;
3938 player->GetAllMinionsByEntry(hatchling, NPC_VENOMHIDE_HATCHLING);
3939 if (hatchling.empty())
3940 {
3941 return;
3942 }
3943
3944 for (Creature* creature : hatchling)
3945 {
3946 if (creature)
3947 {
3948 target = creature;
3949 return;
3950 }
3951 }
3952 }
3953 }
Definition Creature.h:43

References SpellScript::GetCaster(), and NPC_VENOMHIDE_HATCHLING.

Referenced by Register().


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