Advertisement
Guest User

Untitled

a guest
Jan 5th, 2022
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. # Simple Format: 'Item : Amount'
  2. # Complex Format: 'Item:Durability : Amount : name:<name> : lore:<lore> : enchant:<enchantment>:level'
  3. # Example (1): 'IRON_SWORD : 1' -> This will give a normal iron sword
  4. # Example (2): 'IRON_SWORD : 1 : name:&cSword' -> This will give a normal iron sword, but with a custom name!
  5. # Example (3): 'IRON_SWORD : 1 : name:&6God Sword : enchant:DAMAGE_ALL:1' -> This will give an iron sword named 'God Sword' with a sharpness 1 enchantment
  6. # For a list of enchantments, visit https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  7. # If you want to increase the chance of an item, simply add it twice or more
  8. # You can create new chest types, simply copy the default one, rename it, and modify its content
  9. # You SHOULD NOT delete or rename the Default type, only change its content
  10. # There is no lock on the enchantment level!
  11. # You can create for example OP chest category to vote for by copying the Normal category and pasting it. DO NOT DELETE THE 'NORMAL' CATEGORY
  12. # EVERY CHEST CATEGORY MUST HAVE THE 'DEFAULT' CHEST TYPE
  13. # For POTIONS, if your server is below 1.9 then use POTION:DURABILITY to make potions like POTION:16421, otherwise you should use the form
  14. # POTION/SPLASH_POTION/LINGERING_POTION:POTION_TYPE:EXTENDED:UPGRADED
  15. # Example of the form -> 'SPLASH_POTION:INSTANT_DAMAGE:false:true : 1'
  16. # List of potion types: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionType.html
  17. # TIPPED_ARROW has the same format as potions -> # Example of the form -> 'TIPPED_ARROW:POISON:false:true : 1'
  18. # Enchanted book format -> 'ENCHANTED_BOOK : 1 : enchant:<Enchantment>:<Level>'
  19. # If you created your own chest types they must be added in all categories including the Normal one..
  20. Chests:
  21. Normal:
  22. Default:
  23. min-items: 5
  24. max-items: 8
  25. items:
  26. - 'STONE : 16'
  27. - 'DIRT : 16'
  28. - 'WOOD : 16'
  29.  
  30. ... More items and categories
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement