Braxx.lua 609 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/MeetingOfTheMinds/Braxx.lua
  3. Script Author : Neveruary
  4. Script Date : 2021.10.05 12:10:19
  5. Script Purpose : Governs the behavior of Braxx in A Meeting of the Minds.
  6. : Spell functions de-activated pending proper spell implementation on mobs.
  7. --]]
  8. -- spells = {Gaze, Glare of Eradication, Gaze of Commandment, Gaze of Writhing Agony}
  9. function spawn(NPC)
  10. end
  11. function aggro(NPC, Spawn)
  12. AddTimer(NPC, math.random(1500,2500), "spellLoop")
  13. end
  14. function hailed(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end