Greybeard.lua 857 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/IsleRefuge1/Greybeard.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.09.13 04:09:04
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseSkeleton2.lua")
  9. function spawn(NPC)
  10. local dmgMod = GetStr(NPC)/10
  11. SetInfoStructUInt(NPC, "override_primary_weapon", 1)
  12. SetInfoStructUInt(NPC, "primary_weapon_damage_low", 5 + dmgMod)
  13. SetInfoStructUInt(NPC, "primary_weapon_damage_high", 11 + dmgMod)
  14. SetInfoStructUInt(NPC, "hp_regen_override", 1)
  15. SetInfoStructSInt(NPC, "hp_regen", 0)
  16. SetInfoStructUInt(NPC, "pw_regen_override", 1)
  17. SetInfoStructSInt(NPC, "pw_regen", 0)
  18. SetSpawnAnimation(NPC, 13016)
  19. end
  20. function hailed(NPC, Spawn)
  21. FaceTarget(NPC, Spawn)
  22. end
  23. function respawn(NPC)
  24. spawn(NPC)
  25. end