EvigistheAncient.lua 470 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/FrostfangSea/EvigistheAncient.lua
  3. Script Purpose : for the spawn Evigis the Ancient
  4. Script Author : theFoof
  5. Script Date : 2013.6.13
  6. Script Notes :
  7. --]]
  8. local NapEvigis = 64
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function casted_on(NPC, Spawn, SpellName)
  15. if SpellName == "Gerla's Elemental Lullaby" then
  16. KillSpawn(NPC, Spawn, 1)
  17. SetStepComplete(Spawn, NapEvigis, 1)
  18. end
  19. end