Advertisement
Guest User

Config

a guest
Jan 18th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. cachedCrates=[
  2. {
  3. position {
  4. x=17
  5. y=72
  6. z=16
  7. }
  8. worldName=world
  9. },
  10. {
  11. position {
  12. x=693
  13. y=67
  14. z=-24528
  15. }
  16. worldName=world
  17. }
  18. ]
  19. crates {
  20. legendary {
  21. items=[
  22. {
  23. # The amount of an item.
  24. amount=1
  25. # The chance, out of 100, that this item will be drawn.
  26. chance=15
  27. # A command to run on picking this item.
  28. command="give %p minecraft:diamond 1"
  29. # The id of the item we're using
  30. id="minecraft:diamond"
  31. lore="O shiny"
  32. # A name
  33. name=Diamond
  34. },
  35. {
  36. amount=1
  37. # Chances are assumed for items that don't have it.
  38. chance=10
  39. command="give %p minecraft:dirt"
  40. id="minecraft:dirt"
  41. # Lore.
  42. lore="Better luck next time"
  43. name=Dirt
  44. },
  45. {
  46. amount=1
  47. chance=15
  48. command="pokerandom %p"
  49. id="pixelmon:poke_ball"
  50. # Lore.
  51. lore="What could it be?"
  52. name="Random Pokemon"
  53. },
  54. {
  55. amount=16
  56. chance=5
  57. command="give @p pixelmon:timer_ball 16"
  58. id="pixelmon:timer_ball"
  59. # Lore.
  60. lore="Better luck next time"
  61. name="16 timer balls"
  62. },
  63. {
  64. amount=1
  65. chance=15
  66. command="pgive @p dragonite s"
  67. id="pixelmon:ultra_ball"
  68. # Lore.
  69. lore="Dragonite"
  70. name="Its a shiny dragonite!"
  71. },
  72. {
  73. amount=1
  74. chance=10
  75. command="pokeedit @p 1 ivattack:31 ivdefence:31 ivhp:31 ivspecialattack:31 ivspecialdefence:31 ivspeed:31"
  76. id="pixelmon:pokemon_editor"
  77. # Lore.
  78. lore="To the max!"
  79. name="Max IVS"
  80. },
  81. {
  82. amount=1
  83. chance=10
  84. command="give @p pixelmon:orb 1"
  85. id="pixelmon:orb"
  86. # Lore.
  87. lore="This would go great with a shrine"
  88. name="Orb"
  89. },
  90. {
  91. amount=1
  92. chance=10
  93. command="lrandom"
  94. id="pixelmon:master_ball"
  95. # Lore.
  96. lore="It's a legendary!"
  97. name="Random legendary"
  98. }
  99. ]
  100. # Make sure this looks good everywhere :)
  101. name="ยง2Legendary Crate"
  102. # Types will be added in the future, but keeping this as a Spinner will keep your config future proof.
  103. type=Spinner
  104. }
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement