Advertisement
Guest User

Setup-2

a guest
Mar 20th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 KB | None | 0 0
  1. include-files:
  2. ##########
  3. # The plugin will scan through and load these files after loading the main config below.
  4. # Note: drops from included files will are inclusive and will all be added to the drop list.
  5. ##########
  6. # - includes/od-fix_undroppables.yml # fix glass, bookshelf, boat and stairs drops
  7. # - includes/od-goldtools-basic.yml # allow gold tools chance to get ice, glowstone and grass
  8. # - includes/od-goldtools-smelt.yml # gold-pickaxe smelts ores to ingots, sand to glass, etc
  9. # - includes/od-ore_extraction.yml # allow ores to be "extracted" - leaving behind the stone
  10. # - includes/od-leaf_overhaul.yml # overhaul leaf drops (apples, cocoa beans, leaves, sticks & a very small chance of golden apple)
  11. # - includes/od-playerdeath_zombie.yml # players drop zombies on death
  12. # - includes/od-undead_chaos.yml # the undead shall rise again! Includes players dropping zombies/skeletons
  13. # - includes/od-random_examples.yml # For crazy testing only :) Read through examples before activating.
  14. # - includes/od-dyewool.yml # Dye wool after placing!
  15. # - includes/od-stop_mob_farms.yml # Stop mob farming!
  16.  
  17. ## Other users overhauls
  18. # - includes/overhaul-catballs.yml # great example/playable config from Catballs (disable "ob" configs before using this one, otherwise you might have too many drops)
  19. # - includes/overhaul-zarius.yml # Zar's messy config (I run this with no other includes, at the moment)
  20.  
  21. ## Add your files here (alternatively just add your custom drops to the bottom of this file)
  22. # - my_custom_file1.yml
  23.  
  24.  
  25. aliases:
  26. ##########
  27. # add custom YAML aliases here (advanced customisation) - see the wiki for more information
  28.  
  29. defaults:
  30. ##########
  31. # add default values for the config below, "include-files" have their own "defaults" sections
  32.  
  33.  
  34. otherdrops:
  35. ##########
  36. # Your changes here, or create a new .yml file and include it above in the "include-files" section
  37. # Explore the included config files for many more examples
  38. #
  39. # If make a interesting or crazy config let me know on the forum and I might include it in the next release.
  40. #
  41. # Example:
  42. # GLASS:
  43. # - drop: GLASS
  44. #
  45. # - drop: MONEY
  46. # quantity: 3-15
  47. # message: You recycled the glass for %q dollars.
  48.  
  49. IRON_ORE:
  50. - drop: IRON_INGOT
  51. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#1, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#1]
  52. quantity: 1-2
  53.  
  54. IRON_ORE:
  55. - drop: IRON_INGOT
  56. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#2, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#2]
  57. quantity: 1-4
  58.  
  59. IRON_ORE:
  60. - drop: IRON_INGOT
  61. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#3, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#3]
  62. quantity: 1-6
  63.  
  64. IRON_ORE:
  65. - drop: IRON_INGOT
  66. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#10, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#10]
  67. quantity: 2-10
  68.  
  69. IRON_ORE:
  70. - drop: IRON_INGOT
  71. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#20, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#20]
  72. quantity: 2-15
  73.  
  74. IRON_ORE:
  75. - drop: IRON_INGOT
  76. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#40, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#40]
  77. quantity: 2-30
  78.  
  79. GOLD_ORE:
  80. - drop: GOLD_INGOT
  81. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#1, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#1]
  82. quantity: 1-2
  83.  
  84. GOLD_ORE:
  85. - drop: GOLD_INGOT
  86. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#2, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#2]
  87. quantity: 1-4
  88.  
  89. GOLD_ORE:
  90. - drop: GOLD_INGOT
  91. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#3, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#3]
  92. quantity: 1-6
  93.  
  94. GOLD_ORE:
  95. - drop: GOLD_INGOT
  96. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#10, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#10]
  97. quantity: 2-10
  98.  
  99. GOLD_ORE:
  100. - drop: GOLD_INGOT
  101. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#20, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#20]
  102. quantity: 2-15
  103.  
  104. GOLD_ORE:
  105. - drop: GOLD_INGOT
  106. tool: [DIAMOND_PICKAXE@!LOOT_BONUS_BLOCKS#40, IRON_PICKAXE@!LOOT_BONUS_BLOCKS#40]
  107. quantity: 2-30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement