Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 KB | None | 0 0
  1. # See PwnPlantGrowth's page on http://dev.bukkit.org for more config details.
  2.  
  3. # Full biome list available at http://jd.bukkit.org/dev/apidocs/org/bukkit/block/Biome.html
  4.  
  5. # Plants / Crops are available in the "Material" list. See the following for official material names.
  6. # Full material list available at http://jd.bukkit.org/rb/apidocs/org/bukkit/Material.html
  7.  
  8. # Which worlds should this plugin be enabled in? Worlds not in this list will have default growth.
  9. enabled_worlds:
  10. - BetaBox
  11. - BetaBox_nether
  12.  
  13. # Stop buckets and dispensers from transporting source blocks - adds realism.
  14. block_water_bucket: false
  15. block_water_dispenser: false
  16.  
  17. # Natural sky light level: 0 allows any, 10 is sunlight through glass/tree leaves, 15 is direct sunlight
  18. min_natural_light: 10
  19.  
  20. # List of items allowed to grow in false light (torches, lightstone, lava) - use offical MATERIAL names to add to this list
  21. grow_in_dark:
  22. - RED_MUSHROOM
  23. - BROWN_MUSHROOM
  24. - NETHER_WARTS
  25. - COCOA
  26.  
  27. # Enable use of weed killer
  28. weed_killer_enabled: false
  29.  
  30. # A Block that can act as a weed killer (keeps plants from dying, will NOT affect growth rates)
  31. weed_killer: GOLD_BLOCK
  32.  
  33. # Radius that weed killer protects, plants within this distance of the weed killer block will not turn to dead shrubs
  34. weed_killer_radius: 5
  35.  
  36. # Enable use of fertilizer
  37. fertilizer_enabled: false
  38.  
  39. # A Block that can act as a fertilizer (keeps plants growing at 100% - as long as they are in the right biome)
  40. fertilizer: SOUL_SAND
  41.  
  42. # Radius that fertilizer affects, plants within this distance of the block will grow at 100%
  43. fertilizer_radius: 5
  44.  
  45. # Enable use of UV Light Block
  46. uv_enabled: false
  47.  
  48. # A Block that can act as UV Light (will allow plants in radius to grow where there is no natural light, -note, still requires actual lighting)
  49. uv: GLOWSTONE
  50.  
  51. # Radius that UV affects
  52. uv_radius: 5
  53.  
  54. # Run a debug log to view additional plugin data for troubleshooting and configuration, turn off in production!
  55. debug_log: false
  56.  
  57. # CROPS - Important note, as of PPG 1.6 the plant names are now all in UPPER CASE matching the actual Bukkit Material.TYPE
  58.  
  59. CACTUS:
  60. Growth: 1
  61. Death: 0
  62. Biome: []
  63.  
  64. CARROT:
  65. Growth: 7
  66. Death: 0
  67. Biome: []
  68.  
  69. COCOA:
  70. Growth: 1
  71. Death: 0
  72. Biome: []
  73.  
  74. MELON_BLOCK:
  75. Growth: 3
  76. Death: 0
  77. Biome: []
  78.  
  79. MELON_STEM:
  80. Growth: 7
  81. Death: 0
  82. Biome: []
  83.  
  84. NETHER_WARTS:
  85. Growth: 1
  86. Death: 0
  87. Biome: []
  88.  
  89. POTATO:
  90. Growth: 7
  91. Death: 0
  92. Biome: []
  93.  
  94. PUMPKIN_BLOCK:
  95. Growth: 3
  96. Death: 0
  97. Biome: []
  98.  
  99. PUMPKIN_STEM:
  100. Growth: 7
  101. Death: 0
  102. Biome: []
  103.  
  104. SUGAR_CANE_BLOCK:
  105. Growth: 1
  106. Death: 0
  107. Biome: []
  108.  
  109. # This is WHEAT - In this example wheat will grow everywhere at 50% rate, except plains it will grow at %100
  110. CROPS:
  111. Growth: 7
  112. Death: 0
  113. Biome: []
  114.  
  115. # TREES
  116. # Full tree list available at http://jd.bukkit.org/dev/apidocs/org/bukkit/TreeType.html
  117.  
  118. ACACIA:
  119. Growth: 1
  120. Death: 0
  121. Biome: []
  122.  
  123. BIRCH:
  124. Growth: 1
  125. Death: 0
  126. Biome: []
  127.  
  128. TALL_BIRCH:
  129. Growth: 1
  130. Death: 0
  131. Biome: []
  132.  
  133. JUNGLE:
  134. Growth: 1
  135. Death: 0
  136. Biome: []
  137.  
  138. JUNGLE_BUSH:
  139. Growth: 1
  140. Death: 0
  141. Biome: []
  142.  
  143. SMALL_JUNGLE:
  144. Growth: 1
  145. Death: 0
  146. Biome: []
  147.  
  148. DARK_OAK:
  149. Growth: 1
  150. Death: 0
  151. Biome: []
  152.  
  153. REDWOOD:
  154. Growth: 1
  155. Death: 0
  156. Biome: []
  157.  
  158. TALL_REDWOOD:
  159. Growth: 1
  160. Death: 0
  161. Biome: []
  162.  
  163. MEGA_REDWOOD:
  164. Growth: 1
  165. Death: 0
  166. Biome: []
  167.  
  168. SWAMP:
  169. Growth: 1
  170. Death: 0
  171. Biome: []
  172.  
  173. TREE:
  174. Growth: 1
  175. Death: 0
  176. Biome: []
  177.  
  178. BIG_TREE:
  179. Growth: 1
  180. Death: 0
  181. Biome: []
  182.  
  183. COCOA_TREE:
  184. Growth: 1
  185. Death: 0
  186. Biome: []
  187.  
  188. # GIANT MUSHROOMS
  189. BROWN_MUSHROOM:
  190. Growth: 7
  191. Death: 0
  192. Biome: []
  193.  
  194. RED_MUSHROOM:
  195. Growth: 7
  196. Death: 0
  197. Biome: []
  198.  
  199. # Plugin will check for the following list of plants as of ver. 2.1.1
  200. # "CACTUS", "CARROT", "COCOA", "CROPS", "MELON_BLOCK", "MELON_STEM", "NETHER_WARTS", "POTATO", "PUMPKIN_BLOCK", "PUMPKIN_STEM", "SUGAR_CANE_BLOCK", "ACACIA", "BIG_TREE", "BIRCH", "BROWN_MUSHROOM", "COCOA_TREE", "DARK_OAK", "JUNGLE", "JUNGLE_BUSH", "MEGA_REDWOOD", "RED_MUSHROOM", "REDWOOD", "SMALL_JUNGLE", "SWAMP", "TALL_BIRCH", "TALL_REDWOOD", "TREE"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement