OhrgranFoulgore.lua 656 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/OhrgranFoulgore.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2024.01.18 01:01:28
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. function spawn(NPC)
  10. Bloodskull(NPC)
  11. dmgMod = GetStr(NPC)/10
  12. SetInfoStructUInt(NPC, "override_primary_weapon", 1)
  13. SetInfoStructUInt(NPC, "primary_weapon_damage_low", math.floor(30 + dmgMod))
  14. SetInfoStructUInt(NPC, "primary_weapon_damage_high", math.floor(60 + dmgMod))
  15. end
  16. function hailed(NPC, Spawn)
  17. FaceTarget(NPC, Spawn)
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end