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

Private Member Functions

 PrepareAuraScript (spell_gen_steal_weapon)
 
bool Validate (SpellInfo const *) override
 
void OnApply (AuraEffect const *, AuraEffectHandleModes)
 
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=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 (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 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 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< CheckEffectProcHandlerDoCheckEffectProc
 
HookList< AfterCheckProcHandlerDoAfterCheckProc
 
HookList< AuraProcHandlerDoPrepareProc
 
HookList< AuraProcHandlerOnProc
 
HookList< AuraProcHandlerAfterProc
 
HookList< EffectProcHandlerOnEffectProc
 
HookList< EffectProcHandlerAfterEffectProc
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string const * m_scriptName
 
uint32 m_scriptSpellId
 

Detailed Description

Member Function Documentation

◆ OnApply()

void spell_gen_steal_weapon::OnApply ( AuraEffect const *  ,
AuraEffectHandleModes   
)
inlineprivate
5396 {
5397 Unit* caster = GetCaster();
5398 Unit* target = GetTarget();
5399 if (!caster || !target)
5400 return;
5401
5402 if (Creature* stealer = caster->ToCreature())
5403 {
5404 if (Player* player = target->ToPlayer())
5405 {
5406 if (Item* mainItem = player->GetItemByPos(INVENTORY_SLOT_BAG_0, EQUIPMENT_SLOT_MAINHAND))
5407 {
5408 stealer->SetUInt32Value(UNIT_VIRTUAL_ITEM_SLOT_ID, mainItem->GetEntry());
5409 stealer->CastSpell(stealer, SPELL_STEAL_WEAPON, true);
5410
5411 if (stealer->GetEntry() == NPC_GLUMDOR)
5412 {
5413 stealer->AI()->Talk(SAY_GLUMDOR_STEAL, player);
5414 }
5415 }
5416 }
5417 // He can steal creature weapons too
5418 if (Creature* creature = target->ToCreature())
5419 {
5420 int8 mainhand = 1;
5421 if (EquipmentInfo const* eInfo = sObjectMgr->GetEquipmentInfo(creature->GetEntry(), mainhand))
5422 {
5423 stealer->SetUInt32Value(UNIT_VIRTUAL_ITEM_SLOT_ID, eInfo->ItemEntry[0]);
5424 stealer->CastSpell(stealer, SPELL_STEAL_WEAPON, true);
5425 }
5426 }
5427 }
5428 }
std::int8_t int8
Definition Define.h:105
#define sObjectMgr
Definition ObjectMgr.h:1730
@ EQUIPMENT_SLOT_MAINHAND
Definition Player.h:677
#define INVENTORY_SLOT_BAG_0
Definition Player.h:657
@ UNIT_VIRTUAL_ITEM_SLOT_ID
Definition UpdateFields.h:116
Unit * GetCaster() const
Definition SpellScript.cpp:1035
Unit * GetTarget() const
Definition SpellScript.cpp:1180
Definition Creature.h:47
Definition Item.h:220
Player * ToPlayer()
Definition Object.h:202
Creature * ToCreature()
Definition Object.h:206
Definition Player.h:1086
Definition Unit.h:665
@ SAY_GLUMDOR_STEAL
Definition spell_generic.cpp:5382
@ NPC_GLUMDOR
Definition spell_generic.cpp:5381
@ SPELL_STEAL_WEAPON
Definition spell_generic.cpp:5380
Definition CreatureData.h:360

References EQUIPMENT_SLOT_MAINHAND, AuraScript::GetCaster(), AuraScript::GetTarget(), INVENTORY_SLOT_BAG_0, NPC_GLUMDOR, SAY_GLUMDOR_STEAL, sObjectMgr, SPELL_STEAL_WEAPON, Object::ToCreature(), Object::ToPlayer(), and UNIT_VIRTUAL_ITEM_SLOT_ID.

Referenced by Register().

◆ OnRemove()

void spell_gen_steal_weapon::OnRemove ( AuraEffect const *  ,
AuraEffectHandleModes   
)
inlineprivate
5431 {
5432 Unit* caster = GetCaster();
5433 if (!caster)
5434 return;
5435
5436 if (Creature* stealer = caster->ToCreature())
5437 {
5438 stealer->SetUInt32Value(UNIT_VIRTUAL_ITEM_SLOT_ID, 0);
5439 }
5440 }

References AuraScript::GetCaster(), Object::ToCreature(), and UNIT_VIRTUAL_ITEM_SLOT_ID.

Referenced by Register().

◆ PrepareAuraScript()

spell_gen_steal_weapon::PrepareAuraScript ( spell_gen_steal_weapon  )
private

◆ Register()

void spell_gen_steal_weapon::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

5443 {
5446 }
@ EFFECT_1
Definition SharedDefines.h:32
@ SPELL_AURA_MOD_DISARM
Definition SpellAuraDefines.h:130
@ AURA_EFFECT_HANDLE_REAL
Definition SpellAuraDefines.h:42
#define AuraEffectApplyFn(F, I, N, M)
Definition SpellScript.h:754
#define AuraEffectRemoveFn(F, I, N, M)
Definition SpellScript.h:765
HookList< EffectApplyHandler > AfterEffectRemove
Definition SpellScript.h:764
HookList< EffectApplyHandler > AfterEffectApply
Definition SpellScript.h:753
void OnRemove(AuraEffect const *, AuraEffectHandleModes)
Definition spell_generic.cpp:5430
void OnApply(AuraEffect const *, AuraEffectHandleModes)
Definition spell_generic.cpp:5395

References AuraScript::AfterEffectApply, AuraScript::AfterEffectRemove, AURA_EFFECT_HANDLE_REAL, AuraEffectApplyFn, AuraEffectRemoveFn, EFFECT_1, OnApply(), OnRemove(), and SPELL_AURA_MOD_DISARM.

◆ Validate()

bool spell_gen_steal_weapon::Validate ( SpellInfo const *  )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

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

References SPELL_STEAL_WEAPON, and _SpellScript::ValidateSpellInfo().


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