PkzwkTzkr.lua 563 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/MeetingOfTheMinds/PkzwkTzkr.lua
  3. Script Author : Neveruary
  4. Script Date : 2021.10.05 01:10:57
  5. Script Purpose : Governs behavior of Pkzwk Tzkr in Meeting of the Minds.
  6. Boss Mechanics : Spawns with 10 strange guardians linked.
  7. --]]
  8. spells = {40173, 40155, 40183, 40083}
  9. function spawn(NPC)
  10. end
  11. function attacked(NPC, Spawn)
  12. Say(NPC, "Reinforcement forces: notified.")
  13. end
  14. function hailed(NPC, Spawn)
  15. end
  16. function death(NPC, Spawn)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end