mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
- Added tactic for Freya Nature bomb
- Added tactic for Freya Eonar's gift
This commit is contained in:
@@ -7,6 +7,14 @@
|
||||
#include "RaidUlduarBossHelper.h"
|
||||
#include "Trigger.h"
|
||||
|
||||
enum UlduarIDs
|
||||
{
|
||||
// Freya
|
||||
NPC_EONARS_GIFT = 33228,
|
||||
|
||||
GOBJECT_NATURE_BOMB = 194902,
|
||||
};
|
||||
|
||||
//
|
||||
// Flame Levi
|
||||
//
|
||||
@@ -90,4 +98,18 @@ public:
|
||||
bool IsActive() override;
|
||||
};
|
||||
|
||||
class FreyaNearNatureBombTrigger : public Trigger
|
||||
{
|
||||
public:
|
||||
FreyaNearNatureBombTrigger(PlayerbotAI* ai) : Trigger(ai, "freya near nature bomb") {}
|
||||
bool IsActive() override;
|
||||
};
|
||||
|
||||
class FreyaTankNearEonarsGiftTrigger : public Trigger
|
||||
{
|
||||
public:
|
||||
FreyaTankNearEonarsGiftTrigger(PlayerbotAI* ai) : Trigger(ai, "freya tank near eonars gift") {}
|
||||
bool IsActive() override;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user