Files
mod-playerbots/src/strategy/dungeons/wotlk/utgardepinnacle/UtgardePinnacleActions.h
Bobblybook c788e96828 UP and CoS dungeons
- Utgarde Pinnacle implementation
- Culling of Stratholme implementation
- Added additional value ("nearest hostile npcs") needed to expose some hidden trigger-type npc units (eg. frost breath on Skadi fight in UP)
2024-10-21 22:29:03 +11:00

25 lines
636 B
C++

#ifndef _PLAYERBOT_WOTLKDUNGEONUPACTIONS_H
#define _PLAYERBOT_WOTLKDUNGEONUPACTIONS_H
#include "Action.h"
#include "AttackAction.h"
#include "PlayerbotAI.h"
#include "Playerbots.h"
#include "UtgardePinnacleTriggers.h"
class AvoidFreezingCloudAction : public MovementAction
{
public:
AvoidFreezingCloudAction(PlayerbotAI* ai) : MovementAction(ai, "avoid freezing cloud") {}
bool Execute(Event event) override;
};
class AvoidSkadiWhirlwindAction : public MovementAction
{
public:
AvoidSkadiWhirlwindAction(PlayerbotAI* ai) : MovementAction(ai, "avoid skadi whirlwind") {}
bool Execute(Event event) override;
};
#endif