Prayer of Fortitude

This commit is contained in:
avirar
2025-01-04 18:16:33 +11:00
committed by GitHub
parent 4eb302b95e
commit 34210e0508

View File

@@ -14,7 +14,7 @@ class PlayerbotAI;
// disc
BUFF_ACTION(CastPowerWordFortitudeAction, "power word: fortitude");
BUFF_PARTY_ACTION(CastPowerWordFortitudeOnPartyAction, "power word: fortitude");
// BUFF_PARTY_ACTION(CastPowerWordFortitudeOnPartyAction, "power word: fortitude");
BUFF_PARTY_ACTION(CastPrayerOfFortitudeOnPartyAction, "prayer of fortitude");
BUFF_ACTION(CastPowerWordShieldAction, "power word: shield");
@@ -210,4 +210,11 @@ public:
CastGuardianSpiritOnPartyAction(PlayerbotAI* ai) : HealPartyMemberAction(ai, "guardian spirit", 40.0f, HealingManaEfficiency::MEDIUM) {}
};
class CastPowerWordFortitudeOnPartyAction : public BuffOnPartyAction
{
public:
CastPowerWordFortitudeOnPartyAction(PlayerbotAI* ai) : BuffOnPartyAction(ai, "power word: fortitude") {}
bool Execute(Event event) override;
};
#endif