Files
mod-playerbots/src/strategy/dungeons/wotlk/utgardepinnacle/UtgardePinnacleMultipliers.h
Bobblybook 3aa43cbb3c 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-11-03 21:19:04 +08:00

16 lines
331 B
C++

#ifndef _PLAYERBOT_WOTLKDUNGEONUPMULTIPLIERS_H
#define _PLAYERBOT_WOTLKDUNGEONUPMULTIPLIERS_H
#include "Multiplier.h"
class SkadiMultiplier : public Multiplier
{
public:
SkadiMultiplier(PlayerbotAI* ai) : Multiplier(ai, "skadi the ruthless") {}
public:
virtual float GetValue(Action* action);
};
#endif