fix(DB/Texts): Added texts to Halazzi. (#14124)
* fix(DB/Texts): Added texts to Halazzi. Fixes #8744 * Update.
This commit is contained in:
parent
9ba464a12b
commit
dbeffd1466
2 changed files with 17 additions and 7 deletions
|
|
@ -56,12 +56,11 @@ enum PhaseHalazzi
|
|||
enum Yells
|
||||
{
|
||||
SAY_AGGRO = 0,
|
||||
SAY_SABER = 1,
|
||||
SAY_SPLIT = 2,
|
||||
SAY_MERGE = 3,
|
||||
SAY_KILL = 4,
|
||||
SAY_DEATH = 5,
|
||||
SAY_BERSERK = 6
|
||||
SAY_KILL = 1,
|
||||
SAY_SABER = 2,
|
||||
SAY_SPLIT = 3,
|
||||
SAY_MERGE = 4,
|
||||
SAY_DEATH = 5
|
||||
};
|
||||
|
||||
class boss_halazzi : public CreatureScript
|
||||
|
|
@ -197,7 +196,6 @@ public:
|
|||
|
||||
if (BerserkTimer <= diff)
|
||||
{
|
||||
Talk(SAY_BERSERK);
|
||||
DoCast(me, SPELL_BERSERK, true);
|
||||
BerserkTimer = 60000;
|
||||
}
|
||||
|
|
@ -207,6 +205,7 @@ public:
|
|||
{
|
||||
if (SaberlashTimer <= diff)
|
||||
{
|
||||
Talk(SAY_SABER);
|
||||
// A tank with more than 490 defense skills should receive no critical hit
|
||||
//DoCast(me, 41296, true);
|
||||
DoCastVictim(SPELL_SABER_LASH, true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue