Advertisement
Guest User

Untitled

a guest
Feb 10th, 2014
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.06 KB | None | 0 0
  1. # Defaults for AntiCreeper.
  2. # This file is not expected to be extracted by the user, but could be if so desired
  3. #
  4. # Added nerf_dragon. Replaced damageblocks with explodeblocks.
  5. # Added nerf_wither.destroyblocks.
  6. # Added nerf_beds
  7. # Added example with material name strings
  8. # Added example .power
  9. # Added defaults for blockphysics
  10. # Added defaults for unknown
  11. # Added defaults for crystal
  12. log_level: FINEST
  13.  
  14. nerf_creeper:
  15. explodeblocks: false
  16. power: 3 # default 3.0
  17. depth: 55
  18. yield: 100 # default is not set
  19. # blocklist: not set
  20. blocklist: grass, dirt, sand, gravel, clay, mycelium, cobblestone, stone
  21. whitelist: true
  22. entitydamage:
  23. toplayer: true
  24. tomob: true
  25. toitem: true
  26. todrops: false
  27. topainting: false
  28. depth: 0 #effective everywhere
  29. effects: true
  30. fire: false
  31. blockphysics: false
  32.  
  33. # This section affects the Wither boss explosion only
  34. nerf_wither:
  35. explodeblocks: true #default: true
  36. depth: 0 #that is, everywhere
  37. # power: 7.0 # default 7.0
  38. # yield: not set; defaults to system default
  39. # blocklist: not set
  40. entitydamage:
  41. toplayer: true
  42. tomob: true
  43. toitem: false
  44. todrops: false
  45. topainting: false
  46. depth: 0 #effective everywhere
  47. effects: true
  48. whitelist: false
  49. fire: false
  50. # Below affects Wither "walking" through blocks or when damaged. blocklist will apply
  51. destroyblocks: true
  52. blockphysics: false
  53.  
  54. nerf_dragon:
  55. # Dragon actually explodes blocks he flies through
  56. explodeblocks: true
  57. whitelist: false
  58. # blocklist: SAND, DIRT
  59. blockphysics: false
  60.  
  61. # This section affects ghast fire, fire charges, and wither skulls
  62. nerf_fireball:
  63. explodeblocks: true
  64. depth: 0 #that is, everywhere
  65. yield: 100 #default not set
  66. power: 1
  67. entitydamage:
  68. toplayer: true
  69. tomob: true
  70. toitem: true
  71. todrops: false
  72. topainting: false
  73. depth: 0 #that is, everywhere
  74. effects: true
  75. fire: true
  76. blockphysics: false
  77. # other stuff
  78. charge:
  79. entitydamage:
  80. toplayer: true
  81. tomob: true
  82. toitem: true
  83. todrops: false
  84. topainting: false
  85. depth: 0
  86. fire: true
  87.  
  88.  
  89. nerf_tnt:
  90. explodeblocks: true #default: true
  91. depth: 0 #that is, everywhere
  92. # yield: not set; defaults to system default
  93. # Below would disable TNT chains
  94. # blocklist: tnt
  95. whitelist: false
  96. entitydamage:
  97. toplayer: true
  98. tomob: true
  99. toitem: true
  100. todrops: false
  101. topainting: false
  102. depth: 0 #that is, everywhere
  103. effects: true
  104. fire: false
  105. blockphysics: false
  106.  
  107. nerf_unknown:
  108. explodeblocks: false
  109. depth: 0 #that is, everywhere
  110. # yield: not set; defaults to system default
  111. # blocklist: not set
  112. whitelist: false
  113. entitydamage:
  114. toplayer: true
  115. tomob: true
  116. toitem: true
  117. todrops: false
  118. topainting: false
  119. depth: 0 #effective everywhere
  120. effects: true
  121. whitelist: false
  122. blockphysics: false
  123.  
  124. nerf_crystal:
  125. explodeblocks: true
  126. depth: 0 #that is, everywhere
  127. # yield: not set; defaults to system default
  128. # blocklist: not set
  129. whitelist: false
  130. entitydamage:
  131. toplayer: true
  132. tomob: true
  133. toitem: true
  134. todrops: false
  135. topainting: false
  136. depth: 0 #effective everywhere
  137. effects: true
  138. whitelist: false
  139. blockphysics: false
  140.  
  141. nerf_endermen:
  142. spawnok: true
  143. teleportok: true
  144. blockliftok: true
  145. blockplaceok: true
  146. whitelist: false
  147. # blocklist: grass, dirt, sand, gravel, yellow_flower, red_rose, brown_mushroom, red_mushroom, tnt, cactus, clay, pumpkin, melon_block, mycelium
  148. # Above are the only blocks un-modded MC allows Endermen to pick up
  149. # You can either leave the ones you want them to ignore, or
  150. # set whitelist=true and delete the ones you want
  151. # Note that Blocklist only applies at pickup. No blocklist for placement.
  152.  
  153. nerf_lightning:
  154. entitydamage:
  155. toplayer: true
  156. tomob: true
  157. toitem: true
  158. todrops: true
  159. topainting: true
  160.  
  161. nerf_beds: false
  162.  
  163. nerfed_worlds:
  164. - world
  165. - world2
  166. - world_nether
  167. - world2_the_end
  168. - world2_nether
  169. - world_the_end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement