From d01953d2e0a7ce74692fef052e3b45911d644cda Mon Sep 17 00:00:00 2001 From: Yunfan Li Date: Tue, 9 Apr 2024 23:25:07 +0800 Subject: [PATCH] Unholy spell order --- src/strategy/deathknight/UnholyDKStrategy.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/strategy/deathknight/UnholyDKStrategy.cpp b/src/strategy/deathknight/UnholyDKStrategy.cpp index f6d835fa..647df234 100644 --- a/src/strategy/deathknight/UnholyDKStrategy.cpp +++ b/src/strategy/deathknight/UnholyDKStrategy.cpp @@ -73,14 +73,15 @@ NextAction** UnholyDKStrategy::getDefaultActions() { return NextAction::array(0, // new NextAction("scourge strike", ACTION_DEFAULT + 0.8f), - new NextAction("death and decay", ACTION_DEFAULT + 0.8), - new NextAction("ghoul frenzy", ACTION_DEFAULT + 0.7f), - new NextAction("icy touch", ACTION_DEFAULT + 0.5f), + new NextAction("death and decay", ACTION_DEFAULT + 0.9f), + new NextAction("ghoul frenzy", ACTION_DEFAULT + 0.8f), + new NextAction("icy touch", ACTION_DEFAULT + 0.7f), new NextAction("blood boil", ACTION_DEFAULT + 0.6f), + new NextAction("blood strike", ACTION_DEFAULT + 0.5f), new NextAction("plague strike", ACTION_DEFAULT + 0.4f), - new NextAction("horn of winter", ACTION_DEFAULT + 0.1f), - new NextAction("summon gargoyle", ACTION_DEFAULT + 0.3f), - new NextAction("death coil", ACTION_DEFAULT + 0.2f), + new NextAction("horn of winter", ACTION_DEFAULT + 0.3f), + new NextAction("summon gargoyle", ACTION_DEFAULT + 0.2f), + new NextAction("death coil", ACTION_DEFAULT + 0.1f), new NextAction("melee", ACTION_DEFAULT), nullptr); }