mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 02:04:52 +01:00
Scripts/Steam Vault: Add missing text to Thespia & linked aggro (#31037)
This commit is contained in:
@@ -19,11 +19,12 @@
|
||||
|
||||
#include "ScriptMgr.h"
|
||||
#include "ScriptedCreature.h"
|
||||
#include "SpellInfo.h"
|
||||
#include "steam_vault.h"
|
||||
|
||||
enum ThespiaTexts
|
||||
{
|
||||
SAY_SUMMON = 0,
|
||||
SAY_CLOUD = 0,
|
||||
SAY_AGGRO = 1,
|
||||
SAY_SLAY = 2,
|
||||
SAY_DEATH = 3
|
||||
@@ -60,6 +61,13 @@ struct boss_hydromancer_thespia : public BossAI
|
||||
events.ScheduleEvent(EVENT_ENVELOPING_WINDS, 10s, 15s);
|
||||
}
|
||||
|
||||
void OnSpellCast(SpellInfo const* spell) override
|
||||
{
|
||||
if (spell->Id == SPELL_LIGHTNING_CLOUD)
|
||||
if (roll_chance_i(50))
|
||||
Talk(SAY_CLOUD);
|
||||
}
|
||||
|
||||
void KilledUnit(Unit* who) override
|
||||
{
|
||||
if (who->GetTypeId() == TYPEID_PLAYER)
|
||||
|
||||
Reference in New Issue
Block a user