Advertisement
quietlikeafox

Untitled

Sep 24th, 2015
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. # FiveNightAtFreddysInMinecraft v0.7.1
  2. # @author ucchy
  3. # @license LGPLv3
  4. # @copyright Copyright ucchy 2015
  5.  
  6.  
  7. # =============== Common Settings ===============
  8.  
  9. # Message language.
  10. lang: en
  11.  
  12. # Min player num.
  13. minPlayers: 2
  14.  
  15. # Max player num.
  16. maxPlayers: 64
  17.  
  18. # Real time seconds per one hour in game.
  19. # If you set 60 seconds, one night will be 360 seconds (= 60sec X 6hours).
  20. secondsOfOneHour: 60
  21.  
  22. # Interval seconds between previous night and next night.
  23. secondsOfNightInterval: 15
  24.  
  25. # Battery decreasement per second.
  26. batteryDecreasePerSecond: 0.14
  27.  
  28. # Battery decreasement per second by using flash light.
  29. batteryFlashLightPerSecond: 0.2
  30.  
  31. # Battery decreasement per using rader.
  32. batteryRaderPerUse: 1.0
  33.  
  34. # Battery decreasement per second by using shutter.
  35. batteryShutterPerSecond: 0.67
  36.  
  37. # Rader search range. Default is 15 meters.
  38. raderSearchingRange: 15
  39.  
  40. # Player logout tracking seconds.
  41. # If a player log out in midway of game, and expire this time, that player will lose.
  42. playerLogoutTrackingSeconds: 20
  43.  
  44. # =============== Freddy's Characters Settings ===============
  45.  
  46. # Movement speed settings of Night1.
  47. # You can set each character's movement speeds, -99(cannot move) or from -5 to 5.
  48. # Foxy cannot move always, except using movement item.
  49. # foxyMovement is the number of times the Foxy can act per night,
  50. # feadbearMovement is the number of times the FredBear can use speed-up per night,
  51. # you can set -1(cannot move) or 0(random), or from 1 to 5.
  52. night1MoveSpeed:
  53. freddy: -99
  54. chica: -3
  55. bonnie: -3
  56. foxy: 1
  57. fredbear: -1
  58. foxyMovement: 1
  59. fredbearMovement: 1
  60.  
  61. # Movement speed settings of Night2.
  62. night2MoveSpeed:
  63. freddy: -99
  64. chica: -2
  65. bonnie: -2
  66. foxy: 1
  67. fredbear: -1
  68. foxyMovement: 1
  69. fredbearMovement: 1
  70.  
  71. # Movement speed settings of Night3.
  72. night3MoveSpeed:
  73. freddy: -1
  74. chica: -1
  75. bonnie: -1
  76. foxy: 2
  77. fredbear: 0
  78. foxyMovement: 2
  79. fredbearMovement: 2
  80.  
  81. # Movement speed settings of Night4.
  82. night4MoveSpeed:
  83. freddy: 0
  84. chica: 0
  85. bonnie: 0
  86. foxy: 3
  87. fredbear: 0
  88. foxyMovement: 3
  89. fredbearMovement: 2
  90.  
  91. # Movement speed settings of Night5.
  92. night5MoveSpeed:
  93. freddy: 1
  94. chica: 1
  95. bonnie: 1
  96. foxy: 3
  97. fredbear: 1
  98. foxyMovement: 3
  99. fredbearMovement: 2
  100.  
  101. # Movement speed settings of Night6.
  102. night6MoveSpeed:
  103. freddy: 2
  104. chica: 2
  105. bonnie: 2
  106. foxy: 4
  107. fredbear: 2
  108. foxyMovement: 4
  109. fredbearMovement: 3
  110.  
  111. # Movement speed settings of custom night (Night7).
  112. customNightMoveSpeed:
  113. freddy: 4
  114. chica: 4
  115. bonnie: 4
  116. foxy: 5
  117. fredbear: 3
  118. foxyMovement: 5
  119. fredbearMovement: 4
  120.  
  121. # Foxy movable time seconds per using an item.
  122. foxyMovementSeconds: 15
  123.  
  124. # Chica threat Cooldown time.
  125. chicaThreatCooldownSeconds: 20
  126.  
  127. # The speed up amount of FredBear's speed up skill.
  128. fredbearSpeedUp: 3
  129.  
  130. # =============== Sound Settings ===============
  131.  
  132. # Using flash light.
  133. soundUseFlashLight: 'CLICK'
  134.  
  135. # Using rader.
  136. soundUseRader: 'IRONGOLEM_HIT-1.0-0.7'
  137.  
  138. # Using shutter.
  139. soundUseShutter: 'WITHER_SHOOT-1.0-1.0'
  140.  
  141. # Using foxy movement item.
  142. soundFoxyMovement: 'ZOMBIE_REMEDY-1.0-1.0'
  143.  
  144. # Freddy's teleport sound.
  145. # All player can hear this sound.
  146. # # Please change Freddy's music box sound by using Minecraft Resource Pack. :)
  147. soundFreddyTeleport: 'ENDERMAN_TELEPORT-1.0-0.8,BLAZE_BREATH-1.0-0.5,ENDERMAN_DEATH'
  148.  
  149. # Starting Night.
  150. soundNightStart: 'LEVEL_UP-0.8-0.5,ZOMBIE_UNFECT-1.0-0.8,BLAZE_BREATH-1.0-0.5'
  151.  
  152. # Ending Night.
  153. # # Please change Applause + Yeaaaaahhh!!!! sound by using Minecraft Resource Pack. :)
  154. soundNightEnd: 'ENDERDRAGON_DEATH-0.4-2.0'
  155.  
  156. # Caught player.
  157. soundPlayerCaught: 'GHAST_SCREAM-1.0-0.5,FIREWORK_LARGE_BLAST-1.0-0.5'
  158.  
  159. # Chica threaten.
  160. soundChicaThreat: 'GLASS,ZOMBIE_UNFECT-1.0-0.8,IRONGOLEM_DEATH-0.7-1.0-3'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement