CaptainDeaythan.lua 687 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/SunkenCity_Classic/CaptainDeaythan.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.10.17 03:10:26
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseGhost1.lua")
  9. function spawn(NPC)
  10. dmgMod = GetStr(NPC)/10
  11. SetInfoStructUInt(NPC, "override_primary_weapon", 1)
  12. SetInfoStructUInt(NPC, "primary_weapon_damage_low", math.floor(12 + dmgMod))
  13. SetInfoStructUInt(NPC, "primary_weapon_damage_high", math.floor(24 + dmgMod))
  14. SetSeeHide(NPC,1)
  15. SetSeeInvis(NPC,1)
  16. end
  17. function hailed(NPC, Spawn)
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end