anundeadbattlepriestValeron.lua 599 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/TheGraveyard_Classic/anundeadbattlepriestValeron.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.08.17 03:08:16
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseSkeleton2.lua")
  9. require "SpawnScripts/Generic/NPCModule"
  10. function spawn(NPC, Spawn)
  11. NPCModule(NPC, Spawn)
  12. SpawnSet(NPC, "heroic", 1)
  13. SetSpawnAnimation(NPC, 13016)
  14. SpawnSet(NPC,"model_type",140)
  15. end
  16. function hailed(NPC, Spawn)
  17. FaceTarget(NPC, Spawn)
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end