mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-29 00:23:48 +00:00
54 lines
1.9 KiB
C++
54 lines
1.9 KiB
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license, you may redistribute it and/or modify it under version 2 of the License, or (at your option), any later version.
|
|
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*/
|
|
|
|
#ifndef AZEROTHCORE_TOTEM_H
|
|
#define AZEROTHCORE_TOTEM_H
|
|
|
|
#include "TemporarySummon.h"
|
|
|
|
enum TotemType
|
|
{
|
|
TOTEM_PASSIVE = 0,
|
|
TOTEM_ACTIVE = 1,
|
|
TOTEM_STATUE = 2 // copied straight from moongose, may need more implementation to work
|
|
};
|
|
// Some Totems cast spells that are not in creature DB
|
|
#define SENTRY_TOTEM_SPELLID 6495
|
|
|
|
#define SENTRY_TOTEM_ENTRY 3968
|
|
#define EARTHBIND_TOTEM_ENTRY 2630
|
|
|
|
class Totem : public Minion
|
|
{
|
|
public:
|
|
explicit Totem(SummonPropertiesEntry const* properties, uint64 owner);
|
|
~Totem() override {};
|
|
void Update(uint32 time) override;
|
|
void InitStats(uint32 duration) override;
|
|
void InitSummon() override;
|
|
void UnSummon(uint32 msTime = 0) override;
|
|
uint32 GetSpell(uint8 slot = 0) const { return m_spells[slot]; }
|
|
uint32 GetTotemDuration() const { return m_duration; }
|
|
void SetTotemDuration(uint32 duration) { m_duration = duration; }
|
|
TotemType GetTotemType() const { return m_type; }
|
|
|
|
bool UpdateStats(Stats /*stat*/) override { return true; }
|
|
bool UpdateAllStats() override { return true; }
|
|
void UpdateResistances(uint32 /*school*/) override {}
|
|
void UpdateArmor() override {}
|
|
void UpdateMaxHealth() override {}
|
|
void UpdateMaxPower(Powers /*power*/) override {}
|
|
void UpdateAttackPowerAndDamage(bool /*ranged*/) override {}
|
|
void UpdateDamagePhysical(WeaponAttackType /*attType*/) override {}
|
|
|
|
bool IsImmunedToSpellEffect(SpellInfo const* spellInfo, uint32 index) const override;
|
|
|
|
protected:
|
|
TotemType m_type;
|
|
uint32 m_duration;
|
|
};
|
|
#endif
|