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

Private Member Functions

 PrepareSpellScript (spell_q13007_iron_colossus)
 
bool Validate (SpellInfo const *) override
 
void HandleDummy (SpellEffIndex effIndex)
 
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 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

◆ HandleDummy()

void spell_q13007_iron_colossus::HandleDummy ( SpellEffIndex  effIndex)
inlineprivate
319 {
320 PreventHitDefaultEffect(effIndex);
321 Creature* caster = GetCaster()->ToCreature();
322 if (!caster)
323 return;
324
326 {
327 caster->CastSpell(caster, SPELL_JORMUNGAR_SUBMERGE_VISUAL, true);
330 caster->SetControlled(false, UNIT_STATE_ROOT);
331 for (uint8 i = 0; i < MAX_CREATURE_SPELLS; ++i)
332 caster->m_spells[i] = 0;
333
334 caster->m_spells[0] = SPELL_JORMUNGAR_EMERGE;
335 }
336 else
337 {
341 caster->SetControlled(true, UNIT_STATE_ROOT);
342
343 if (CreatureTemplate const* ct = sObjectMgr->GetCreatureTemplate(caster->GetEntry()))
344 for (uint8 i = 0; i < MAX_CREATURE_SPELLS; ++i)
345 caster->m_spells[i] = ct->spells[i];
346 }
347
348 if (Player* player = caster->GetCharmerOrOwnerPlayerOrPlayerItself())
349 player->VehicleSpellInitialize();
350 }
std::uint8_t uint8
Definition Define.h:109
#define sObjectMgr
Definition ObjectMgr.h:1731
@ IMMUNITY_ID
Definition SharedDefines.h:1404
@ UNIT_STATE_ROOT
Definition UnitDefines.h:183
@ UNIT_FLAG_DISABLE_MOVE
Definition UnitDefines.h:259
static constexpr uint32 MAX_CREATURE_SPELLS
Definition Unit.h:46
Definition Creature.h:47
uint32 m_spells[MAX_CREATURE_SPELLS]
Definition Creature.h:255
uint32 GetEntry() const
Definition Object.h:123
Creature * ToCreature()
Definition Object.h:212
Definition Player.h:1086
SpellInfo const * GetSpellInfo()
Definition SpellScript.cpp:416
void PreventHitDefaultEffect(SpellEffIndex effIndex)
Definition SpellScript.cpp:595
Unit * GetCaster()
Definition SpellScript.cpp:401
void ApplySpellImmune(uint32 spellId, uint32 op, uint32 type, bool apply, SpellImmuneBlockType blockType=SPELL_BLOCK_TYPE_ALL)
Definition Unit.cpp:10217
Player * GetCharmerOrOwnerPlayerOrPlayerItself() const
Definition Unit.cpp:7503
void SetControlled(bool apply, UnitState state, Unit *source=nullptr, bool isFear=false)
Definition Unit.cpp:13913
SpellCastResult CastSpell(SpellCastTargets const &targets, SpellInfo const *spellInfo, CustomSpellValues const *value, TriggerCastFlags triggerFlags=TRIGGERED_NONE, Item *castItem=nullptr, AuraEffect const *triggeredByAura=nullptr, ObjectGuid originalCaster=ObjectGuid::Empty)
Definition Unit.cpp:1372
void RemoveAurasDueToSpell(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, uint8 reqEffMask=0, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
Definition Unit.cpp:4936
void SetUnitFlag(UnitFlags flags)
UnitFlags available in UnitDefines.h.
Definition Unit.h:749
void RemoveUnitFlag(UnitFlags flags)
UnitFlags available in UnitDefines.h.
Definition Unit.h:750
Definition CreatureData.h:187
@ SPELL_JORMUNGAR_SUBMERGE_VISUAL
Definition zone_storm_peaks.cpp:305
@ SPELL_COLOSSUS_GROUND_SLAM
Definition zone_storm_peaks.cpp:306
@ SPELL_JORMUNGAR_EMERGE
Definition zone_storm_peaks.cpp:304
@ SPELL_JORMUNGAR_SUBMERGE
Definition zone_storm_peaks.cpp:303

References Unit::ApplySpellImmune(), Unit::CastSpell(), SpellScript::GetCaster(), Unit::GetCharmerOrOwnerPlayerOrPlayerItself(), Object::GetEntry(), SpellScript::GetSpellInfo(), IMMUNITY_ID, Creature::m_spells, MAX_CREATURE_SPELLS, SpellScript::PreventHitDefaultEffect(), Unit::RemoveAurasDueToSpell(), Unit::RemoveUnitFlag(), Unit::SetControlled(), Unit::SetUnitFlag(), sObjectMgr, SPELL_COLOSSUS_GROUND_SLAM, SPELL_JORMUNGAR_EMERGE, SPELL_JORMUNGAR_SUBMERGE, SPELL_JORMUNGAR_SUBMERGE_VISUAL, Object::ToCreature(), UNIT_FLAG_DISABLE_MOVE, and UNIT_STATE_ROOT.

Referenced by Register().

◆ PrepareSpellScript()

spell_q13007_iron_colossus::PrepareSpellScript ( spell_q13007_iron_colossus  )
private

◆ Register()

void spell_q13007_iron_colossus::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

353 {
355 }
@ EFFECT_0
Definition SharedDefines.h:31
@ SPELL_EFFECT_DUMMY
Definition SharedDefines.h:769
#define SpellEffectFn(F, I, N)
Definition SpellScript.h:337
HookList< EffectHandler > OnEffectHitTarget
Definition SpellScript.h:336
void HandleDummy(SpellEffIndex effIndex)
Definition zone_storm_peaks.cpp:318

References EFFECT_0, HandleDummy(), SpellScript::OnEffectHitTarget, SPELL_EFFECT_DUMMY, and SpellEffectFn.

◆ Validate()

bool spell_q13007_iron_colossus::Validate ( SpellInfo const *  )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

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

References SPELL_COLOSSUS_GROUND_SLAM, SPELL_JORMUNGAR_SUBMERGE_VISUAL, and _SpellScript::ValidateSpellInfo().


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