mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
smarter dps target and tank target
This commit is contained in:
@@ -72,15 +72,15 @@ UnholyDKStrategy::UnholyDKStrategy(PlayerbotAI* botAI) : GenericDKStrategy(botAI
|
||||
NextAction** UnholyDKStrategy::getDefaultActions()
|
||||
{
|
||||
return NextAction::array(0,
|
||||
new NextAction("scourge strike", ACTION_NORMAL + 7),
|
||||
new NextAction("blood strike", ACTION_NORMAL + 6),
|
||||
new NextAction("ghoul frenzy", ACTION_NORMAL + 5),
|
||||
new NextAction("summon gargoyle", ACTION_NORMAL + 4),
|
||||
new NextAction("death coil", ACTION_NORMAL + 3),
|
||||
new NextAction("plague strike", ACTION_NORMAL + 2),
|
||||
new NextAction("icy touch", ACTION_NORMAL + 1),
|
||||
new NextAction("horn of winter", ACTION_NORMAL),
|
||||
new NextAction("melee", ACTION_NORMAL),
|
||||
new NextAction("scourge strike", ACTION_DEFAULT + 0.8f),
|
||||
new NextAction("blood strike", ACTION_DEFAULT + 0.7f),
|
||||
new NextAction("ghoul frenzy", ACTION_DEFAULT + 0.6f),
|
||||
new NextAction("summon gargoyle", ACTION_DEFAULT + 0.5f),
|
||||
new NextAction("death coil", ACTION_DEFAULT + 0.4f),
|
||||
new NextAction("plague strike", ACTION_DEFAULT + 0.3f),
|
||||
new NextAction("icy touch", ACTION_DEFAULT + 0.2f),
|
||||
new NextAction("horn of winter", ACTION_DEFAULT + 0.1f),
|
||||
new NextAction("melee", ACTION_DEFAULT),
|
||||
nullptr);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user