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

Private Member Functions

 PrepareAuraScript (spell_brewfest_giddyup_AuraScript)
 
void OnChange (AuraEffect const *, AuraEffectHandleModes)
 
void OnPeriodic (AuraEffect const *)
 
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_brewfest_giddyup::spell_brewfest_giddyup_AuraScript::OnChange ( AuraEffect const ,
AuraEffectHandleModes   
)
inlineprivate
624  {
625  Unit* target = GetTarget();
626  if (!target->HasAura(SPELL_RENTAL_RACING_RAM))
627  {
628  target->RemoveAura(GetId());
629  return;
630  }
631 
632  if (target->HasAura(SPELL_EXHAUSTED_RAM))
633  return;
634 
635  switch (GetStackAmount())
636  {
637  case 1: // green
639  target->RemoveAura(SPELL_RAM_CANTER);
640  target->CastSpell(target, SPELL_RAM_TROT, true);
641  break;
642  case 6: // yellow
643  target->RemoveAura(SPELL_RAM_TROT);
644  target->RemoveAura(SPELL_RAM_GALLOP);
645  target->CastSpell(target, SPELL_RAM_CANTER, true);
646  break;
647  case 11: // red
648  target->RemoveAura(SPELL_RAM_CANTER);
649  target->CastSpell(target, SPELL_RAM_GALLOP, true);
650  break;
651  default:
652  break;
653  }
654 
655  if (GetTargetApplication()->GetRemoveMode() == AURA_REMOVE_BY_DEFAULT)
656  {
657  target->RemoveAura(SPELL_RAM_TROT);
658  target->CastSpell(target, SPELL_RAM_LEVEL_NEUTRAL, true);
659  }
660  }
bool HasAura(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, ObjectGuid itemCasterGUID=ObjectGuid::Empty, uint32 reqEffMask=0) const
Definition: Unit.cpp:4240
uint32 GetId() const
Definition: SpellScript.cpp:996
void RemoveAura(AuraApplicationMap::iterator &i, AuraRemoveMode mode=AURA_REMOVE_BY_DEFAULT)
Definition: Unit.cpp:3442
uint8 GetStackAmount() const
Definition: SpellScript.cpp:1111
Definition: spell_holiday.cpp:598
AuraApplication const * GetTargetApplication() const
Definition: SpellScript.cpp:1179
Definition: spell_holiday.cpp:601
Unit * GetTarget() const
Definition: SpellScript.cpp:1151
Definition: spell_holiday.cpp:603
Definition: spell_holiday.cpp:600
Definition: spell_holiday.cpp:602
Definition: Unit.h:1305
void CastSpell(SpellCastTargets const &targets, SpellInfo const *spellInfo, CustomSpellValues const *value, TriggerCastFlags triggerFlags=TRIGGERED_NONE, Item *castItem=NULL, AuraEffect const *triggeredByAura=NULL, ObjectGuid originalCaster=ObjectGuid::Empty)
Definition: Unit.cpp:869
Definition: Unit.h:451
Definition: spell_holiday.cpp:605

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void spell_brewfest_giddyup::spell_brewfest_giddyup_AuraScript::OnPeriodic ( AuraEffect const )
inlineprivate
663  {
665  }
void RemoveAuraFromStack(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
Definition: Unit.cpp:3602
uint32 GetId() const
Definition: SpellScript.cpp:996
Unit * GetTarget() const
Definition: SpellScript.cpp:1151

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

spell_brewfest_giddyup::spell_brewfest_giddyup_AuraScript::PrepareAuraScript ( spell_brewfest_giddyup_AuraScript  )
private
void spell_brewfest_giddyup::spell_brewfest_giddyup_AuraScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

668  {
672  }
HookList< EffectApplyHandler > AfterEffectApply
Definition: SpellScript.h:692
Definition: SharedDefines.h:28
#define AuraEffectRemoveFn(F, I, N, M)
Definition: SpellScript.h:704
HookList< EffectApplyHandler > OnEffectRemove
Definition: SpellScript.h:699
Definition: SpellAuraDefines.h:286
HookList< EffectPeriodicHandler > OnEffectPeriodic
Definition: SpellScript.h:709
void OnPeriodic(AuraEffect const *)
Definition: spell_holiday.cpp:662
#define AuraEffectApplyFn(F, I, N, M)
Definition: SpellScript.h:693
Definition: SpellAuraDefines.h:46
#define AuraEffectPeriodicFn(F, I, N)
Definition: SpellScript.h:710
void OnChange(AuraEffect const *, AuraEffectHandleModes)
Definition: spell_holiday.cpp:623

+ Here is the call graph for this function:


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