Advertisement
Dragonleet_

Monthly Crate

Jul 19th, 2019
592
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. exports.put("patches/content/monthlycrate", {
  2. normal: {
  3. "$2,500,000": {
  4. icon: "goldingot 1",
  5. chance: 6.5,
  6. commands: [
  7. "eco give {player} 2500000",
  8. ],
  9. },
  10. "$5,000,000": {
  11. icon: "goldingot 1",
  12. chance: 4,
  13. commands: [
  14. "eco give {player} 5000000",
  15. ],
  16. },
  17. "Infinite Craft Wand": {
  18. icon: "goldhoe 1",
  19. chance: 6,
  20. commands: [
  21. "givecraftwand {player}",
  22. ],
  23. },
  24. "2x Mob Hopper": {
  25. icon: "hopper 1",
  26. chance: 5.5,
  27. commands: [
  28. "givemobhopper {player} 2",
  29. ],
  30. },
  31. "4x Crop Hopper": {
  32. icon: "hopper 1",
  33. chance: 8.5,
  34. commands: [
  35. "givecrophopper {player} 4",
  36. ],
  37. },
  38. "4x Ore Hopper": {
  39. icon: "hopper 1",
  40. chance: 9.5,
  41. commands: [
  42. "giveorehopper {player} 4",
  43. ],
  44. },
  45. "1,500 Mob Coins": {
  46. icon: "sunflower 1",
  47. chance: 1.5,
  48. commands: [
  49. "givemobcoins {player} 1500",
  50. ],
  51. },
  52. "2x Villager Spawner": {
  53. icon: "mobspawner 1",
  54. chance: 2,
  55. commands: [
  56. "give {player} spawner 2 name:&eVillager_Spawner",
  57. ],
  58. },
  59. "4x Blaze Spawner": {
  60. icon: "mobspawner 1",
  61. chance: 4,
  62. commands: [
  63. "give {player} spawner 4 name:&eBlaze_Spawner",
  64. ],
  65. },
  66. "320x Emerald Block": {
  67. icon: "emeraldblock 1",
  68. chance: 8.5,
  69. commands: [
  70. "give {player} emeraldblock 320",
  71. ],
  72. },
  73. "Monthly Pickaxe": {
  74. icon: "diamondpickaxe 1",
  75. chance: 1.5,
  76. commands: [
  77. "give {player} diamondpickaxe 1 name:&f&l*_&d&lMonthly_Pickaxe_&f&l* efficiency:15 fortune:15 unbreaking:15",
  78. ],
  79. },
  80. "MemeLord Kit Note": {
  81. icon: "paper 1",
  82. chance: 12.5,
  83. commands: [
  84. "givekitpaper {player} memelord",
  85. ],
  86. },
  87. },
  88.  
  89. final: {
  90. "$7,500,000": {
  91. icon: "goldingot 1",
  92. chance: 5,
  93. commands: [
  94. "eco give {player} 7500000",
  95. ],
  96. },
  97. "$10,000,000": {
  98. icon: "goldingot 1",
  99. chance: 2.5,
  100. commands: [
  101. "eco give {player} 10000000",
  102. ],
  103. },
  104. "5,000 Mob Coins": {
  105. icon: "sunflower 1",
  106. chance: 2,
  107. commands: [
  108. "givemobcoins {player} 5000",
  109. ],
  110. },
  111. "3x Iron Golem Spawner": {
  112. icon: "mobspawner 1",
  113. chance: 1,
  114. commands: [
  115. "give {player} spawner 3 name:&eIron_Golem_Spawner",
  116. ],
  117. },
  118. "1x Deep Storage Unit": {
  119. icon: "enderchest 1",
  120. chance: 2,
  121. commands: [
  122. "givedeepstorage {player} 1",
  123. ],
  124. },
  125. "Monthly Tools Kit": {
  126. icon: "diamondpickaxe 1",
  127. chance: 1.5,
  128. commands: [
  129. "givekitpaper {player} monthly",
  130. ],
  131. },
  132. "6x Mob Hopper": {
  133. icon: "hopper 1",
  134. chance: 8.5,
  135. commands: [
  136. "givemobhopper {player} 6",
  137. ],
  138. },
  139. "Memelord Rank Note (permanent)": {
  140. icon: "paper 1",
  141. chance: 0.00000001,
  142. commands: [
  143. "giverankcoupon {player} memelord",
  144. ],
  145. },
  146. "Infinite Sell Wand": {
  147. icon: "goldhoe 1",
  148. chance: 7,
  149. commands: [
  150. "givesellwand {player}",
  151. ],
  152. },
  153. }
  154. })
  155.  
  156. autoload.watch("patches/content/monthlycrate.js")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement