Advertisement
Sevenous

Untitled

Jul 29th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. load("loads/items.js")
  2.  
  3. exports.put("patches/content/monthlycrate", {
  4. July: {
  5. title: "&c&l*&4&l*&c&l* &4&lMonthly Crate: &c&lJuly &c&l*&4&l*&c&l*",
  6. rewards: {
  7. "&6 10x Chunk Buster": {
  8. commands: "givechunkbuster {name} 10",
  9. icon: "enderportalframe 10",
  10. },
  11. "&6 9x9 Trench Pickaxe": {
  12. commands: "givetrenchpickaxe {name} 9",
  13. icon: "diamondpickaxe 1",
  14. },
  15. "&6 8x Bedrock": {
  16. commands: "give {name} bedrock 8",
  17. icon: "bedrock 8",
  18. },
  19. "&7 3x &6Rare Crate Key": {
  20. commands: "givecratekey rare {name} 3",
  21. icon: "tripwirehook 1",
  22. },
  23. "&7 3x &6Normal Crate Key": {
  24. commands: "givecratekey normal {name} 3",
  25. icon: "tripwirehook 1",
  26. },
  27. "&7 10x &eEnderman Spawner": {
  28. commands: "give {name} 52 10 name:&eEnderman_Spawner",
  29. icon: "spawner 10",
  30. },
  31. "&7 5x &eVillager Spawner": {
  32. commands: "give {name} 52 5 name:&eVillager_Spawner",
  33. icon: "spawner 5",
  34. },
  35. "&7 1x &aJuly Chat Title": {
  36. commands: "padd {name} chat.title.july",
  37. icon: "paper 1",
  38. },
  39. "&7 10x &cMob Hoppers": {
  40. commands: "givemobhopper {name} 10",
  41. icon: "hopper 10",
  42. },
  43. "&7 1x &cSand Wand [Inf]": {
  44. commands: "givesandwand {name} ",
  45. icon: "goldhoe 1",
  46. },
  47. "&7 1x &cSell Wand [Inf]": {
  48. commands: "givesellwand {name} 100",
  49. icon: "goldhoe 1",
  50. },
  51. "&7 64x &cHoppers": {
  52. commands: "give {name} hopper 64",
  53. icon: "52 1"
  54. },
  55. "&7 5x &cThrowable Creeper Egg": {
  56. commands: "givethrowablecegg {name} 5",
  57. icon: "383:50 5"
  58. },
  59. },
  60. bonusRewards: {
  61. "&7 20x &6Silverfish Spawners": {
  62. chance: 30,
  63. commands: "give {name} 52 20 name:&eSilverfish_Spawner",
  64. icon: "52 20",
  65. },
  66. "&7 8x &6Rare Crate Key": {
  67. chance: 30,
  68. commands: "givecratekey rare {name} 8",
  69. icon: "tripwirehook 8",
  70. },
  71. "&6 $10,000,000": {
  72. chance: 30,
  73. commands: "eco give {name} 10000000",
  74. icon: "paper 1",
  75. },
  76. "1x &8[&9&lP&c&lA&f&lT&9&lR&c&lI&f&lO&9&lT&8] Rank": {
  77. chance: 10,
  78. commands: "padd {name} group.limited.patriot",
  79. icon: "paper 1",
  80. },
  81. },
  82. }
  83. })
  84.  
  85. autoload.watch("patches/content/monthlycrate.js")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement