mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
62 lines
1.8 KiB
C++
62 lines
1.8 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 "DruidShapeshiftActions.h"
|
|
|
|
#include "Playerbots.h"
|
|
|
|
bool CastBearFormAction::isPossible()
|
|
{
|
|
return CastBuffSpellAction::isPossible() && !botAI->HasAura("dire bear form", GetTarget());
|
|
}
|
|
|
|
bool CastBearFormAction::isUseful()
|
|
{
|
|
return CastBuffSpellAction::isUseful() && !botAI->HasAura("dire bear form", GetTarget());
|
|
}
|
|
|
|
NextAction** CastDireBearFormAction::getAlternatives()
|
|
{
|
|
return NextAction::merge(NextAction::array(0, new NextAction("bear form"), nullptr),
|
|
CastSpellAction::getAlternatives());
|
|
}
|
|
|
|
bool CastTravelFormAction::isUseful()
|
|
{
|
|
bool firstmount = bot->GetLevel() >= 20;
|
|
|
|
// useful if no mount or with wsg flag
|
|
return !bot->IsMounted() && (!firstmount || (bot->HasAura(23333) || bot->HasAura(23335) || bot->HasAura(34976))) &&
|
|
!botAI->HasAura("dash", bot);
|
|
}
|
|
|
|
bool CastCasterFormAction::isUseful()
|
|
{
|
|
return botAI->HasAnyAuraOf(GetTarget(), "dire bear form", "bear form", "cat form", "travel form", "aquatic form",
|
|
"flight form", "swift flight form", "moonkin form", nullptr) &&
|
|
AI_VALUE2(uint8, "mana", "self target") > sPlayerbotAIConfig->mediumHealth;
|
|
}
|
|
|
|
bool CastCasterFormAction::Execute(Event event)
|
|
{
|
|
botAI->RemoveShapeshift();
|
|
return true;
|
|
}
|
|
|
|
bool CastCancelTreeFormAction::isUseful()
|
|
{
|
|
return botAI->HasAura(33891, bot);
|
|
}
|
|
|
|
bool CastCancelTreeFormAction::Execute(Event event)
|
|
{
|
|
botAI->RemoveAura("tree of life");
|
|
return true;
|
|
}
|
|
|
|
bool CastTreeFormAction::isUseful()
|
|
{
|
|
return GetTarget() && CastSpellAction::isUseful() && !botAI->HasAura(33891, bot);
|
|
} |