aGruttoothsentry.lua 863 B

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/IsleRefuge1/aGruttoothsentry.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.09.09 04:09:16
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseGoblin2.lua")
  9. function spawn(NPC)
  10. local Level = GetLevel(NPC)
  11. local level1 = 4
  12. local level2 = 5
  13. local difficulty1 = 6
  14. local hp1 = 110
  15. local power1 = 55
  16. local difficulty2 = 6
  17. local hp2 = 130
  18. local power2 = 65
  19. if Level == level1 then
  20. SpawnSet(NPC, "difficulty", difficulty1)
  21. SpawnSet(NPC, "hp", hp1)
  22. SpawnSet(NPC, "power", power1)
  23. elseif Level == level2
  24. then
  25. SpawnSet(NPC, "difficulty", difficulty2)
  26. SpawnSet(NPC, "hp", hp2)
  27. SpawnSet(NPC, "power", power2)
  28. end
  29. end
  30. function respawn(NPC)
  31. spawn(NPC)
  32. end