Advertisement
dphrygian

Slayer Shock SpawnManager config

Sep 12th, 2018
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. [Player_SpawnManager]
  2. # Minimum time between new spawn waves (randomly rolled each wave)
  3. SpawnRateMin = 15.0
  4.  
  5. # Maximum time between new spawn waves (randomly rolled each wave)
  6. SpawnRateMax = 25.0
  7.  
  8. # How long after spawning an enemy a particular spawn point can be reused
  9. SpawnPointTimeout = 5.0
  10.  
  11. # Manager will try to maintain this ambient enemy population in low threat neighborhoods
  12. TargetPopulationLowThreat = 4
  13.  
  14. # Manager will try to maintain this ambient enemy population in high threat neighborhoods
  15. TargetPopulationHighThreat = 8
  16.  
  17. # Enemies won't spawn closer than this distance from player
  18. MinSpawnDistance = 6.0
  19.  
  20. # Enemies won't spawn further than this distance from player
  21. MaxSpawnDistance = 36.0
  22.  
  23. # Time in seconds to recheck relevance of ambient enemies (to despawn distant ones)
  24. RelevanceCheckRate = 5.0
  25.  
  26. # How far from player an enemy is considered irrelevant (should be larger than MaxSpawnDistance)
  27. MaxRelevanceDistance = 48.0
  28.  
  29. # How frequently to spawn a miniboss (e.g., every 5th spawn turn, or 60-120 seconds with default params)
  30. MinibossSpawnPhase = 5
  31.  
  32. # Don't have more than 2 minibosses around at a time
  33. MaxMinibosses = 2
  34.  
  35. # How far into mission objectives the Big Bad can appear (0-1)
  36. BigBadScoreThreshold = 0.5
  37.  
  38. # What enemy to spawn for ambient population (don't change this)
  39. SpawnEntity = "Chump"
  40.  
  41. # What enemy to spawn as a Big Bad (don't change this)
  42. BigBadEntity = "BigBad_Mid"
  43.  
  44. # List of minibosses... this formatting is confusing, but the weights are easy enough to adjust
  45. NumMinibosses = &
  46. @ Miniboss
  47. @@& = "Tarrare"
  48. @@^Weight = 1.5
  49. @@& = "Taboo"
  50. @@^Weight = 1.0
  51. @@& = "Lupus"
  52. @@^Weight = 0.5
  53. @@^MinSeason = 2
  54. @@& = "PumpkinKing"
  55. @@^Weight = 1.5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement