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

Private Member Functions

 PrepareSpellScript (spell_q13007_iron_colossus_SpellScript)
 
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
 
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 void Register ()=0
 
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
 
virtual bool _Validate (SpellInfo const *entry)
 
- 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::spell_q13007_iron_colossus_SpellScript::HandleDummy ( SpellEffIndex  effIndex)
inlineprivate
652 {
653 PreventHitDefaultEffect(effIndex);
654 Creature* caster = GetCaster()->ToCreature();
655 if (!caster)
656 return;
657
659 {
660 caster->CastSpell(caster, SPELL_JORMUNGAR_SUBMERGE_VISUAL, true);
663 caster->SetControlled(false, UNIT_STATE_ROOT);
664 for (uint8 i = 0; i < MAX_CREATURE_SPELLS; ++i)
665 caster->m_spells[i] = 0;
666
667 caster->m_spells[0] = SPELL_JORMUNGAR_EMERGE;
668 }
669 else
670 {
674 caster->SetControlled(true, UNIT_STATE_ROOT);
675
676 if (CreatureTemplate const* ct = sObjectMgr->GetCreatureTemplate(caster->GetEntry()))
677 for (uint8 i = 0; i < MAX_CREATURE_SPELLS; ++i)
678 caster->m_spells[i] = ct->spells[i];
679 }
680
681 if (Player* player = caster->GetCharmerOrOwnerPlayerOrPlayerItself())
682 player->VehicleSpellInitialize();
683 }
std::uint8_t uint8
Definition: Define.h:110
static constexpr uint32 MAX_CREATURE_SPELLS
Definition: Unit.h:153
@ UNIT_STATE_ROOT
Definition: Unit.h:335
@ UNIT_FLAG_DISABLE_MOVE
Definition: Unit.h:450
#define sObjectMgr
Definition: ObjectMgr.h:1640
@ SPELL_JORMUNGAR_SUBMERGE_VISUAL
Definition: zone_storm_peaks.cpp:638
@ SPELL_COLOSSUS_GROUND_SLAM
Definition: zone_storm_peaks.cpp:639
@ SPELL_JORMUNGAR_EMERGE
Definition: zone_storm_peaks.cpp:637
@ SPELL_JORMUNGAR_SUBMERGE
Definition: zone_storm_peaks.cpp:636
@ IMMUNITY_ID
Definition: SharedDefines.h:1372
Definition: Creature.h:46
uint32 m_spells[MAX_CREATURE_SPELLS]
Definition: Creature.h:242
Definition: CreatureData.h:176
uint32 GetEntry() const
Definition: Object.h:109
Creature * ToCreature()
Definition: Object.h:197
Definition: Player.h:1046
void ApplySpellImmune(uint32 spellId, uint32 op, uint32 type, bool apply, SpellImmuneBlockType blockType=SPELL_BLOCK_TYPE_ALL)
Definition: Unit.cpp:13300
Player * GetCharmerOrOwnerPlayerOrPlayerItself() const
Definition: Unit.cpp:10576
void SetControlled(bool apply, UnitState state, Unit *source=nullptr, bool isFear=false)
Definition: Unit.cpp:18192
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:1169
void RemoveAurasDueToSpell(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, uint8 reqEffMask=0, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
Definition: Unit.cpp:4835
void SetUnitFlag(UnitFlags flags)
Definition: Unit.h:1481
void RemoveUnitFlag(UnitFlags flags)
Definition: Unit.h:1482
SpellInfo const * GetSpellInfo()
Definition: SpellScript.cpp:411
void PreventHitDefaultEffect(SpellEffIndex effIndex)
Definition: SpellScript.cpp:590
Unit * GetCaster()
Definition: SpellScript.cpp:401

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::spell_q13007_iron_colossus_SpellScript::PrepareSpellScript ( spell_q13007_iron_colossus_SpellScript  )
private

◆ Register()

void spell_q13007_iron_colossus::spell_q13007_iron_colossus_SpellScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

686 {
688 }
#define SpellEffectFn(F, I, N)
Definition: SpellScript.h:337
@ EFFECT_0
Definition: SharedDefines.h:30
@ SPELL_EFFECT_DUMMY
Definition: SharedDefines.h:753
HookList< EffectHandler > OnEffectHitTarget
Definition: SpellScript.h:336
void HandleDummy(SpellEffIndex effIndex)
Definition: zone_storm_peaks.cpp:651

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