Advertisement
Sevenous

Untitled

Jun 23rd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. exports.put("patches/content/monthlycrate", {
  2. normal: {
  3. "$5,000,000": {
  4. icon: "goldingot 1",
  5. chance: 6,
  6. commands: [
  7. "eco give {player} 5000000",
  8. ],
  9. },
  10. "$10,000,000": {
  11. icon: "goldingot 1",
  12. chance: 4,
  13. commands: [
  14. "eco give {player} 10000000",
  15. ],
  16. },
  17. "2x Deep Storage Unit": {
  18. icon: "enderchest 1",
  19. chance: 3,
  20. commands: [
  21. "givedeepstorage {player} 2",
  22. ],
  23. },
  24. "3x Mob Hopper": {
  25. icon: "hopper 1",//
  26. chance: 5,
  27. commands: [
  28. "givemobhopper {player} 3",
  29. ],
  30. },
  31. "4x Ore Hopper": {
  32. icon: "hopper 1",
  33. chance: 5.5,
  34. commands: [
  35. "giveorehopper {player} 4",
  36. ],
  37. },
  38. "2x Villager Spawners": {
  39. icon: "mobspawner 1",
  40. chance: 2,
  41. commands: [
  42. "give {player} spawner 2 name:&eVillager_Spawner",
  43. ],
  44. },
  45. "4x Iron Golem Spawners": {
  46. icon: "mobspawner 1",
  47. chance: 3,
  48. commands: [
  49. "give {player} spawner 4 name:&eIron_Golem_Spawner",
  50. ],
  51. },
  52. "Monthly Pickaxe": {
  53. icon: "diamondpickaxe 1",
  54. chance: 5,
  55. commands: [
  56. "give {player} diamondpickaxe 1 name:&f&l*_&d&lMonthly_Pickaxe_&f&l* efficiency:15 fortune:15 unbreaking:15",
  57. ],
  58. },
  59. "MemeLord Kit Note": {
  60. icon: "paper 1",
  61. chance: 9,
  62. commands: [
  63. "givekitpaper {player} memelord",
  64. ],
  65. },
  66. },
  67.  
  68. final: {
  69. "$15,000,000": {
  70. icon: "goldingot 1",
  71. chance: 3.5,
  72. commands: [
  73. "eco give {player} 15000000",
  74. ],
  75. },
  76. "$20,000,000": {
  77. icon: "goldingot 1",
  78. chance: 2,
  79. commands: [
  80. "eco give {player} 20000000",
  81. ],
  82. },
  83. "5x Silverfish Spawner": {
  84. icon: "mobspawner 1",
  85. chance: 2,
  86. commands: [
  87. "give {player} spawner 5 name:&eSilverfish_Spawner",
  88. ],
  89. },
  90. "Monthly Tools Kit": {
  91. icon: "diamondpickaxe 1",
  92. chance: 2,
  93. commands: [
  94. "givekitpaper {player} monthly",
  95. ],
  96. },
  97. "ArkhamKnight Rank Note (permanent)": {
  98. icon: "paper 1",
  99. chance: 0.00000001,
  100. commands: [
  101. "giverankcoupon {player} arkhamknight",
  102. ],
  103. },
  104. "Memelord Rank Note (permanent)": {
  105. icon: "paper 1",
  106. chance: 0.000000001,
  107. commands: [
  108. "giverankcoupon {player} memelord",
  109. ],
  110. },
  111. "Sell Wand": {
  112. icon: "goldhoe 1",
  113. chance: 6,
  114. commands: [
  115. "givesellwand {player}",
  116. ],
  117. },
  118. }
  119. })
  120.  
  121. autoload.watch("patches/content/monthlycrate.js")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement