achaoticelemental.lua 556 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : SpawnScripts/ShatteredStillnessEpic/achaoticelemental.lua
  3. Script Author : Neveruary
  4. Script Date : 2021.10.04 01:10:11
  5. Script Purpose : Governs behavior of chaotic elemental adds in Shattered Stillness: Epic.
  6. Script Notes : Swirling Cloud of Blood and Stunning Shards need implementation.
  7. --]]
  8. spells = {30159} -- Swirling Cloud of Blood, Stunning Shards}
  9. function spawn(NPC)
  10. AddTimer(NPC, 1000, "spellLoop")
  11. end
  12. function hailed(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end