Guest User

config

a guest
Feb 7th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. # ####### kits.yml #######
  2. #
  3. # Kit configuration
  4. #
  5. # For documentation, please visit
  6. # https://github.com/SkyWars/SkyWars/wiki/Configuration-kits
  7. # #########
  8.  
  9. my-first-kit:
  10. # This kit has a cost of 20.
  11. # It is a bit overpowered, so you may want to remove it.
  12. cost: 20
  13. items:
  14. # You can list any number of items here.
  15. # Each item has a type:. It also may optionally have an enchantments:
  16. # and amount:
  17. # The type is a material name. You can get a list of these here:
  18. # http://tiny.cc/BukkitMaterial
  19. - {type: ARROW, amount: 22}
  20. # When amount is not given, it defaults to 1.
  21. - {type: BOW}
  22. # You can also define a helmet, chestplate, leggings and boots.
  23. # These will automatically be placed in the armor slots of the player.
  24. helmet: {type: DIAMOND_HELMET}
  25. chestplate: {type: DIAMOND_CHESTPLATE}
  26. leggings: {type: DIAMOND_LEGGINGS}
  27. # Every item may have an enchantments:. This contains a bunch of enchantments
  28. # for the item.
  29. boots: {type: DIAMOND_BOOTS, enchantments: {PROTECTION_FIRE: 2, PROTECTION_FALL: 1}}
  30. donator-kit:
  31. # You can define a permission, a cost, or both for a kit.
  32. # When you define a permission, the kit is only shown to people with that
  33. # permission.
  34. # This donor kit is not that great, so you may want to change it.
  35. permission: myserver.donator.kit
  36. items:
  37. - {type: DIAMOND_SWORD, amount: 64}
  38. costly-donator-kit:
  39. # This kit both requires the permission 'myserver.donator.kit2' and costs 200.
  40. permission: myserver.donator.kit2
  41. cost: 200
  42. boots: {type: DIAMOND_BOOTS}
  43. Titan:
  44. # You can define a permission, a cost, or both for a kit.
  45. # When you define a permission, the kit is only shown to people with that
  46. # permission.
  47. material: {type: GOLDEN_APPLE}
  48. # This donor kit is not that great, so you may want to change it.
  49. permission: skywars.kit.Titan
  50. items:
  51. - {type: DIAMOND_SWORD, amount: 64}
Add Comment
Please, Sign In to add comment