Advertisement
Guest User

Better Bosses Main Config

a guest
Jan 17th, 2021
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.21 KB | None | 0 0
  1. # General settings
  2. Boss-Settings {
  3. # Broadcasts the death of a boss to all online players
  4. Announce-Kills=true
  5. # Messages the player that the boss spawned for notifying them of the spawn
  6. Broadcast-Spawns-To-Selected-Players=true
  7. # Broadcasts the spawning of a boss to the whole server
  8. Broadcast-Spawns-To-Server=false
  9. # "true" turns off my bosses, "false" turns on my bosses
  10. Disable-Custom-Pixelmon-Bosses=false
  11. # "true" turns off Pixelmon's bosses, "false" turns on Pixelmon's bosses
  12. Disable-Default-Pixelmon-Bosses=true
  13. # These settings will pick that number of players to try to spawn a boss near
  14. # Players are selected randomly from list of online players
  15. Max-Player-Picked=4
  16. Min-Player-Picked=1
  17. # Sets the radius that a boss will spawn around a player's location (in blocks)
  18. Spawn-Radius=15
  19. # Worlds you don't want bosses to spawn in
  20. World-Blacklist=[]
  21. }
  22. # Sets whether or not a tier of Boss Pokemon spawn
  23. Boss-Tiers {
  24. "Tier-1"=true
  25. "Tier-2"=true
  26. "Tier-3"=true
  27. "Tier-4"=true
  28. "Tier-5"=true
  29. "Tier-6"=true
  30. "Tier-7"=true
  31. "Tier-8"=true
  32. "Tier-9"=true
  33. "Tier-10"=true
  34. }
  35. # Set the custom name of these tiers
  36. Tier-Names {
  37. "Tier-1"="Baby"
  38. "Tier-2"="Easy"
  39. "Tier-3"="Medium Easy"
  40. "Tier-4"="Medium"
  41. "Tier-5"="Medium Hard"
  42. "Tier-6"="Hard"
  43. "Tier-7"="Harder"
  44. "Tier-8"="Insane"
  45. "Tier-9"="Mega"
  46. "Tier-10"="Legendary"
  47. }
  48. Tier-Settings {
  49. # Base spawn chance for bosses, then runs RNG for which boss is spawned (set below)
  50. Base-Boss-Spawn-Chance=0.125
  51. # Base spawn interval for bosses
  52. Base-Boss-Spawn-Interval="15 minutes"
  53. # Sets whether the player can get a Mega Stone from a boss Pokemon
  54. Do-Mega-Bosses-Drop-Mega-Stones=true
  55. # If a boss spawns shiny, killing it puts the player in a battle with a normal shiny of that Pokemon to attempt to catch it
  56. Give-Chance-To-Catch-Shinies=true
  57. # Disables allowing Legendaries from this setting
  58. Give-Chance-To-Catch-Shinies-Legendary=false
  59. # Sets the chance that a Mega Boss will drop its Mega Stone
  60. Give-Chance-To-Drop-Mega-Stone=0.85
  61. # Sets the chance that a shiny boss that is killed gives the player a chance to catch that shiny as a normal Pokemon
  62. Shiny-Battle-Chance=0.75
  63. # Sets the color that bosses in each tier spawn tinted as
  64. # You can look up your own desired colors here: https://htmlcolorcodes.com/
  65. Tier-Colors-Tints {
  66. "Tier-1"="#36BBF1"
  67. "Tier-2"="#F528F2"
  68. "Tier-3"="#16E27F"
  69. "Tier-4"="#CAB00C"
  70. "Tier-5"="#B86694"
  71. "Tier-6"="#0E2EBC"
  72. "Tier-7"="#AC5C11"
  73. "Tier-8"="#4E1996"
  74. "Tier-9"="#DF1208"
  75. "Tier-10"="#3A8C32"
  76. }
  77. # Sets the level differences for each tier
  78. # 3 = +3 levels from player's highest
  79. Tier-Level-Settings {
  80. "Tier-1"=0
  81. "Tier-2"=2
  82. "Tier-3"=5
  83. "Tier-4"=9
  84. "Tier-5"=15
  85. "Tier-6"=20
  86. "Tier-7"=25
  87. "Tier-8"=30
  88. "Tier-9"=35
  89. "Tier-10"=45
  90. }
  91. # Sets the scale factor of these bosses (how much bigger they are from normal Pokemon
  92. # Be careful, too big and the server will automatically remove it and throw errors
  93. Tier-Scale-Factors {
  94. "Tier-1"=1.1
  95. "Tier-2"=1.4
  96. "Tier-3"=1.9
  97. "Tier-4"=2.1
  98. "Tier-5"=2.4
  99. "Tier-6"=2.7
  100. "Tier-7"=2.9
  101. "Tier-8"=3.2
  102. "Tier-9"=3.4
  103. "Tier-10"=3.9
  104. }
  105. # Sets the shiny chance of each boss tier
  106. # Bigger the number, more likely to be shiny
  107. Tier-Shiny-Chances {
  108. "Tier-1"=0.02
  109. "Tier-2"=0.02
  110. "Tier-3"=0.02
  111. "Tier-4"=0.02
  112. "Tier-5"=0.02
  113. "Tier-6"=0.02
  114. "Tier-7"=0.02
  115. "Tier-8"=0.02
  116. "Tier-9"=0.02
  117. "Tier-10"=0.02
  118. }
  119. # Sets the spawn chance of each boss tier
  120. # Bigger the number, more likely to spawn
  121. Tier-Spawn-Chances {
  122. "Tier-1"=0.70
  123. "Tier-2"=0.55
  124. "Tier-3"=0.46
  125. "Tier-4"=0.37
  126. "Tier-5"=0.33
  127. "Tier-6"=0.28
  128. "Tier-7"=0.25
  129. "Tier-8"=0.19
  130. "Tier-9"=0.11
  131. "Tier-10"=0.05
  132. }
  133. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement