DeadWreganFirebeard.lua 488 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : SpawnScripts/FrostfangSea/DeadWreganFirebeard.lua
  3. Script Purpose : Wregan Firebeard(dead)
  4. Script Author : theFoof
  5. Script Date : 2013.05.19
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. AddSpawnAccess(NPC, NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function casted_on(Target, Caster, SpellName)
  15. if SpellName == "the body" then
  16. SendMessage(Caster, "Wregan's body shows signs of the mortal grizzly mauling he sustained.")
  17. end
  18. end