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

Private Member Functions

 PrepareSpellScript (spell_sindragosa_frost_breath_SpellScript)
 
void HandleInfusion ()
 
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 constGetSpellInfo ()
 
SpellValue constGetSpellValue ()
 
SpellEffectInfo constGetEffectInfo (SpellEffIndex) const
 
WorldLocation constGetExplTargetDest ()
 
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)
 
SpellEffectInfo constGetEffectInfo () const
 
int32 GetEffectValue () const
 
void SetEffectValue (int32 value)
 
ItemGetCastItem ()
 
void CreateItem (uint32 effIndex, uint32 itemId)
 
SpellInfo constGetTriggeringSpell ()
 
void FinishCast (SpellCastResult result)
 
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 ()
 
- Public Attributes inherited from SpellScript
HookList< CastHandlerBeforeCast
 
HookList< CastHandlerOnCast
 
HookList< CastHandlerAfterCast
 
HookList< CheckCastHandlerOnCheckCast
 
HookList< EffectHandlerOnEffectLaunch
 
HookList< EffectHandlerOnEffectLaunchTarget
 
HookList< EffectHandlerOnEffectHit
 
HookList< EffectHandlerOnEffectHitTarget
 
HookList< EffectHandlerOnEffectSuccessfulDispel
 
HookList< HitHandlerBeforeHit
 
HookList< HitHandlerOnHit
 
HookList< HitHandlerAfterHit
 
HookList
< ObjectAreaTargetSelectHandler
OnObjectAreaTargetSelect
 
HookList
< ObjectTargetSelectHandler
OnObjectTargetSelect
 
HookList
< DestinationTargetSelectHandler
OnDestinationTargetSelect
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string constm_scriptName
 
uint32 m_scriptSpellId
 

Member Function Documentation

void spell_sindragosa_frost_breath::spell_sindragosa_frost_breath_SpellScript::HandleInfusion ( )
inlineprivate
1176  {
1177  Player* target = GetHitPlayer();
1178  if (!target)
1179  return;
1180 
1181  // Check difficulty and quest status
1182  if (!target->GetMap()->Is25ManRaid() || target->GetQuestStatus(QUEST_FROST_INFUSION) != QUEST_STATUS_INCOMPLETE)
1183  return;
1184 
1185  // Check if player has Shadow's Edge equipped and not ready for infusion
1186  if (!target->HasAura(SPELL_UNSATED_CRAVING) || target->HasAura(SPELL_FROST_IMBUED_BLADE))
1187  return;
1188 
1189  Aura* infusion = target->GetAura(SPELL_FROST_INFUSION, target->GetGUID());
1190  if (infusion && infusion->GetStackAmount() >= 3)
1191  {
1192  target->RemoveAura(infusion);
1193  target->CastSpell(target, SPELL_FROST_IMBUED_BLADE, TRIGGERED_FULL_MASK);
1194  }
1195  else
1196  target->CastSpell(target, SPELL_FROST_INFUSION, TRIGGERED_FULL_MASK);
1197  }
Player * GetHitPlayer()
Definition: SpellScript.cpp:464
Will ignore most target checks (mostly DBC target checks)
Definition: Unit.h:479
Definition: boss_sindragosa.cpp:88
Definition: icecrown_citadel.h:57
Definition: boss_sindragosa.cpp:152
uint8 GetStackAmount() const
Definition: SpellAuras.h:179
Definition: QuestDef.h:113
Definition: SpellAuras.h:116
Definition: boss_sindragosa.cpp:89

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

spell_sindragosa_frost_breath::spell_sindragosa_frost_breath_SpellScript::PrepareSpellScript ( spell_sindragosa_frost_breath_SpellScript  )
private
void spell_sindragosa_frost_breath::spell_sindragosa_frost_breath_SpellScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

1200  {
1202  }
#define SpellHitFn(F)
Definition: SpellScript.h:306
HookList< HitHandler > AfterHit
Definition: SpellScript.h:304

+ Here is the call graph for this function:


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