Advertisement
Guest User

Config

a guest
Jan 17th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. crates {
  2. legendary {
  3. items=[
  4. {
  5. amount=1 # The amount of an item.
  6. chance=15 # The chance, out of 100, that this item will be drawn.
  7. command="give %p minecraft:diamond 1" # A command to run on picking this item.
  8. id="minecraft:diamond" # The id of the item we're using
  9. name="Diamond" # A name
  10. lore="O shiny"
  11. },
  12. {
  13. amount=1
  14. chance=5 # Chances are assumed for items that don't have it.
  15. command="give %p minecraft:dirt"
  16. id="minecraft:dirt"
  17. lore="Better luck next time" # Lore.
  18. name="Dirt"
  19. #Enchanted dirt coming soon.
  20. }
  21. {
  22. amount=1
  23. chance=15
  24. command="pokerandom %p"
  25. id="pixelmon:poke_ball"
  26. lore="What could it be?" # Lore.
  27. name="Random Pokemon"
  28. #Enchanted dirt coming soon.
  29. }
  30. {
  31. amount=1
  32. chance=20
  33. command="pokerandom %p s"
  34. id="pixelmon:great_ball"
  35. lore="What could it be?" # Lore.
  36. name="Random Shiny Pokemon"
  37. }
  38. {
  39. amount=1
  40. chance=10
  41. command="pokegive %p Groudon"
  42. id="pixelmon:master_ball"
  43. lore="It's a legendary!" # Lore.
  44. name="Groudon"
  45. }
  46. {
  47. amount=1
  48. chance=10
  49. command="pokegive %p Regigigas"
  50. id="pixelmon:master_ball"
  51. lore="It's a legendary!" # Lore.
  52. name="Regigigas"
  53. }
  54. {
  55. amount=1
  56. chance=10
  57. command="pokegive %p Kyogre"
  58. id="pixelmon:master_ball"
  59. lore="It's a legendary!" # Lore.
  60. name="Kyogre"
  61. }
  62. {
  63. amount=1
  64. chance=10
  65. command="pokegive %p Jirachi"
  66. id="pixelmon:master_ball"
  67. lore="It's a legendary!" # Lore.
  68. name="Jirachi"
  69. }
  70. {
  71. amount=1
  72. chance=10
  73. command="pokegive %p Deoxys"
  74. id="pixelmon:master_ball"
  75. lore="It's a legendary!" # Lore.
  76. name="Groudon"
  77. }
  78.  
  79. #Make sure your chances don't add past 100 or you'll get an error!
  80. ]
  81. name="§2Legendary Crate" # Make sure this looks good everywhere :)
  82. type=Spinner # Types will be added in the future, but keeping this as a Spinner will keep your config future proof.
  83. }
  84. #Keys will also be configurable in the future, so keep your eye out.
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement