mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-17 02:40:28 +00:00
69 lines
2.4 KiB
C++
69 lines
2.4 KiB
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license, you may redistribute it and/or modify it under version 2 of the License, or (at your option), any later version.
|
|
*/
|
|
|
|
#include "PriestTriggers.h"
|
|
#include "Playerbots.h"
|
|
|
|
bool PowerWordFortitudeOnPartyTrigger::IsActive()
|
|
{
|
|
return BuffOnPartyTrigger::IsActive() && !botAI->HasAura("power word : fortitude", GetTarget()) && !botAI->HasAura("prayer of fortitude", GetTarget());
|
|
}
|
|
|
|
bool PowerWordFortitudeTrigger::IsActive()
|
|
{
|
|
return BuffTrigger::IsActive() && !botAI->HasAura("power word: fortitude", GetTarget()) && !botAI->HasAura("prayer of fortitude", GetTarget());
|
|
}
|
|
|
|
bool DivineSpiritOnPartyTrigger::IsActive()
|
|
{
|
|
return BuffOnPartyTrigger::IsActive() && !botAI->HasAura("divine spirit", GetTarget()) && !botAI->HasAura("prayer of spirit", GetTarget());
|
|
}
|
|
|
|
bool DivineSpiritTrigger::IsActive()
|
|
{
|
|
return BuffTrigger::IsActive() && !botAI->HasAura("divine spirit", GetTarget()) && !botAI->HasAura("prayer of spirit", GetTarget());
|
|
}
|
|
|
|
bool PrayerOfFortitudeTrigger::IsActive()
|
|
{
|
|
return BuffOnPartyTrigger::IsActive() &&
|
|
!botAI->HasAura("prayer of fortitude", GetTarget()) &&
|
|
botAI->GetBot()->IsInSameGroupWith((Player*)GetTarget()) &&
|
|
botAI->GetBuffedCount((Player*)GetTarget(), "prayer of fortitude") < 4 && !botAI->GetBuffedCount((Player*)GetTarget(), "power word: fortitude");
|
|
}
|
|
|
|
bool PrayerOfSpiritTrigger::IsActive()
|
|
{
|
|
return BuffOnPartyTrigger::IsActive() &&
|
|
!botAI->HasAura("prayer of spirit", GetTarget()) &&
|
|
botAI->GetBot()->IsInSameGroupWith((Player*)GetTarget()) &&
|
|
//botAI->GetManaPercent() > 50 &&
|
|
botAI->GetBuffedCount((Player*) GetTarget(), "prayer of spirit") < 4 && !botAI->GetBuffedCount((Player*) GetTarget(), "divine spirit");
|
|
}
|
|
|
|
bool InnerFireTrigger::IsActive()
|
|
{
|
|
Unit* target = GetTarget();
|
|
return SpellTrigger::IsActive() && !botAI->HasAura(spell, target);
|
|
}
|
|
|
|
bool ShadowformTrigger::IsActive()
|
|
{
|
|
return !botAI->HasAura("shadowform", bot);
|
|
}
|
|
|
|
bool ShadowfiendTrigger::IsActive()
|
|
{
|
|
return BoostTrigger::IsActive() && !bot->HasSpellCooldown(34433);
|
|
}
|
|
|
|
BindingHealTrigger::BindingHealTrigger(PlayerbotAI* botAI) : PartyMemberLowHealthTrigger(botAI, "binding heal", sPlayerbotAIConfig->lowHealth, 0)
|
|
{
|
|
}
|
|
|
|
bool BindingHealTrigger::IsActive()
|
|
{
|
|
return PartyMemberLowHealthTrigger::IsActive() && AI_VALUE2(uint8, "health", "self target") < sPlayerbotAIConfig->mediumHealth;
|
|
}
|