wonka101

Untitled

Jan 15th, 2020
863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.15 KB | None | 0 0
  1. #                         Loot Table Configurations
  2. # Drop chance refers to the chance of drop occurring from a loot tool
  3. # Example: .05 means each time you use your Looting Tool, there is a 5% of getting a drop from the table
  4. dropChance: .05
  5.  
  6. # Drops occur based on the above chance. To add items use the format below, make sure to add items from
  7. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html for this to work
  8. # The higher the weight is the more likely an item is to drop relative to the other items in the table
  9. drops:
  10.   - material: DIAMOND
  11.     weight: 10
  12.     min: 1
  13.     max: 3
  14.   - material: LEATHER
  15.     weight: 90
  16.     min: 1
  17.     max: 10
  18. #                           Tool Information Configuration
  19.  
  20. toolShop: true # If set to true the tool shop feature is turned on, NOTE: if shop is true and no economy plugin is set
  21.                # all picks can be obtained for free
  22.  
  23. # Name, itemLore (description), unbreakable field all can be configured
  24. # Set enabled to false if you would like to disable a tool in your server
  25. # The material(tool type) can be configured. If a tool is not the correct type then it will not work.
  26.  
  27.  
  28. tools:
  29.   laserPickaxe:
  30.     name: Laser Pickaxe
  31.     itemLore: Mine from miles away!
  32.     unbreakable: true
  33.     enabled: true
  34.     material: DIAMOND_PICKAXE
  35.     cost: 100
  36.   expPickaxe:
  37.     name: Experience Pickaxe
  38.     itemLore: Get that exp!!
  39.     unbreakable: false
  40.     enabled: true
  41.     material: DIAMOND_PICKAXE
  42.     cost: 130
  43.   smeltingPickaxe:
  44.     name: Smelting Pickaxe
  45.     itemLore: Who needs a furnace?
  46.     unbreakable: false
  47.     enabled: true
  48.     material: DIAMOND_PICKAXE
  49.     cost: 145
  50.   magneticPickaxe:
  51.     name: Magnetic Pickaxe
  52.     itemLore: Don't bother picking anything up!
  53.     unbreakable: false
  54.     enabled: true
  55.     material: DIAMOND_PICKAXE
  56.     cost: 100
  57.   bountifulPickaxe:
  58.     name: Bountiful Pickaxe
  59.     itemLore: Free Stuff!
  60.     unbreakable: false
  61.     enabled: true
  62.     material: DIAMOND_PICKAXE
  63.     cost: 100
  64.   explosivePickaxe:
  65.     name: Explosive Pickaxe
  66.     itemLore: BOOM!
  67.     unbreakable: false
  68.     enabled: true
  69.     material: DIAMOND_PICKAXE
  70.     cost: 100
  71.   megaAxe:
  72.     name: Mega Axe
  73.     itemLore: Only takes one wack!
  74.     unbreakable: false
  75.     enabled: true
  76.     material: DIAMOND_AXE
  77.     cost: 100
  78.   piercingPickaxe:
  79.     name: Piercing Pickaxe
  80.     itemLore: Possibility to destroy extra blocks!
  81.     unbreakable: false
  82.     enabled: true
  83.     material: DIAMOND_PICKAXE
  84.     cost: 100
  85.   dirtDestroyer:
  86.     name: Dirt Destroyer
  87.     itemLore: Breaks a lot of dirt!
  88.     unbreakable: false
  89.     enabled: true
  90.     material: DIAMOND_SHOVEL
  91.     cost: 100
  92.   treasurePickaxe:
  93.     name: Treasure Pickaxe
  94.     itemLore: Find treasure!
  95.     unbreakable: false
  96.     enabled: true
  97.     material: GOLDEN_PICKAXE
  98.     cost: 100
  99.   treasureAxe:
  100.     name: Treasure Axe
  101.     itemLore: Find Treasure
  102.     unbreakable: false
  103.     enabled: true
  104.     material: GOLDEN_AXE
  105.     cost: 100
  106.   treasureFishingRod:
  107.     name: Treasure Fishing Rod
  108.     itemLore: Catch a fish and you might get some tresure!
  109.     unbreakable: false
  110.     enabled: true
  111.     material: FISHING_ROD
  112.     cost: 100
Advertisement
Add Comment
Please, Sign In to add comment