mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-02-13 23:33:47 +00:00
test: ms_time
This commit is contained in:
@@ -43,7 +43,7 @@ BOOST_TRIGGER_A(ShadowfiendTrigger, "shadowfiend");
|
||||
class PowerWordFortitudeOnPartyTrigger : public BuffOnPartyTrigger
|
||||
{
|
||||
public:
|
||||
PowerWordFortitudeOnPartyTrigger(PlayerbotAI* botAI) : BuffOnPartyTrigger(botAI, "power word: fortitude", 4) { }
|
||||
PowerWordFortitudeOnPartyTrigger(PlayerbotAI* botAI) : BuffOnPartyTrigger(botAI, "power word: fortitude", 4 * 2000) { }
|
||||
|
||||
bool IsActive() override;
|
||||
};
|
||||
@@ -51,7 +51,7 @@ class PowerWordFortitudeOnPartyTrigger : public BuffOnPartyTrigger
|
||||
class PowerWordFortitudeTrigger : public BuffTrigger
|
||||
{
|
||||
public:
|
||||
PowerWordFortitudeTrigger(PlayerbotAI* botAI) : BuffTrigger(botAI, "power word: fortitude", 4) { }
|
||||
PowerWordFortitudeTrigger(PlayerbotAI* botAI) : BuffTrigger(botAI, "power word: fortitude", 4 * 2000) { }
|
||||
|
||||
bool IsActive() override;
|
||||
};
|
||||
@@ -59,7 +59,7 @@ class PowerWordFortitudeTrigger : public BuffTrigger
|
||||
class DivineSpiritOnPartyTrigger : public BuffOnPartyTrigger
|
||||
{
|
||||
public:
|
||||
DivineSpiritOnPartyTrigger(PlayerbotAI* botAI) : BuffOnPartyTrigger(botAI, "divine spirit", 4) { }
|
||||
DivineSpiritOnPartyTrigger(PlayerbotAI* botAI) : BuffOnPartyTrigger(botAI, "divine spirit", 4 * 2000) { }
|
||||
|
||||
bool IsActive() override;
|
||||
};
|
||||
@@ -67,7 +67,7 @@ class DivineSpiritOnPartyTrigger : public BuffOnPartyTrigger
|
||||
class DivineSpiritTrigger : public BuffTrigger
|
||||
{
|
||||
public:
|
||||
DivineSpiritTrigger(PlayerbotAI* botAI) : BuffTrigger(botAI, "divine spirit", 4) { }
|
||||
DivineSpiritTrigger(PlayerbotAI* botAI) : BuffTrigger(botAI, "divine spirit", 4 * 2000) { }
|
||||
|
||||
bool IsActive() override;
|
||||
};
|
||||
@@ -75,7 +75,7 @@ class DivineSpiritTrigger : public BuffTrigger
|
||||
class PrayerOfFortitudeTrigger : public BuffOnPartyTrigger
|
||||
{
|
||||
public:
|
||||
PrayerOfFortitudeTrigger(PlayerbotAI* botAI) : BuffOnPartyTrigger(botAI, "prayer of fortitude", 3) { }
|
||||
PrayerOfFortitudeTrigger(PlayerbotAI* botAI) : BuffOnPartyTrigger(botAI, "prayer of fortitude", 3 * 2000) { }
|
||||
|
||||
bool IsActive() override;
|
||||
};
|
||||
@@ -83,7 +83,7 @@ class PrayerOfFortitudeTrigger : public BuffOnPartyTrigger
|
||||
class PrayerOfSpiritTrigger : public BuffOnPartyTrigger
|
||||
{
|
||||
public:
|
||||
PrayerOfSpiritTrigger(PlayerbotAI* botAI) : BuffOnPartyTrigger(botAI, "prayer of spirit", 2) { }
|
||||
PrayerOfSpiritTrigger(PlayerbotAI* botAI) : BuffOnPartyTrigger(botAI, "prayer of spirit", 2 * 2000) { }
|
||||
|
||||
bool IsActive() override;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user