anAlphaWolf.lua 812 B

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