mirror of
https://github.com/liyunfan1223/mod-playerbots.git
synced 2026-02-21 18:40:01 +01:00
Violet Hold implementation Consortium guy is missing, will revisit once I reach heroics so I can code it properly
34 lines
731 B
C++
34 lines
731 B
C++
#ifndef _PLAYERBOT_WOTLKDUNGEONVHMULTIPLIERS_H
|
|
#define _PLAYERBOT_WOTLKDUNGEONVHMULTIPLIERS_H
|
|
|
|
#include "Multiplier.h"
|
|
|
|
class ErekemMultiplier : public Multiplier
|
|
{
|
|
public:
|
|
ErekemMultiplier(PlayerbotAI* ai) : Multiplier(ai, "erekem") {}
|
|
|
|
public:
|
|
virtual float GetValue(Action* action);
|
|
};
|
|
|
|
class IchoronMultiplier : public Multiplier
|
|
{
|
|
public:
|
|
IchoronMultiplier(PlayerbotAI* ai) : Multiplier(ai, "ichoron") {}
|
|
|
|
public:
|
|
virtual float GetValue(Action* action);
|
|
};
|
|
|
|
class ZuramatMultiplier : public Multiplier
|
|
{
|
|
public:
|
|
ZuramatMultiplier(PlayerbotAI* ai) : Multiplier(ai, "zuramat the obliterator") {}
|
|
|
|
public:
|
|
virtual float GetValue(Action* action);
|
|
};
|
|
|
|
#endif
|