Advertisement
Sevenous

Untitled

Jul 29th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. load("loads/items.js")
  2.  
  3. exports.put("patches/content/monthlycrate", {
  4. August: {
  5. title: "&c&l*&4&l*&c&l* &4&lMonthly Crate: &c&lAugust &c&l*&4&l*&c&l*",
  6. rewards: {
  7. "$1,000,000": {
  8. commands: ["eco give {player} 1000000"],
  9. icon: "paper 1",
  10. },
  11. "$500,000": {
  12. commands: ["eco give {player} 500000"],
  13. icon: "paper 1",
  14. },
  15. "$200,000": {
  16. commands: ["eco give {player} 200000"],
  17. icon: "paper 1",
  18. },
  19. "$150,000": {
  20. commands: ["eco give {player} 150000"],
  21. icon: "paper 1",
  22. },
  23. "3x Rare Keys": {
  24. commands: ["givecratekey 3 {player} 3"],
  25. icon: "tripwirehook 3"
  26. },
  27. "5x Rare Keys": {
  28. commands: ["givecratekey 3 {player} 5"],
  29. icon: "tripwirehook 5"
  30. },
  31. "5x Special Keys": {
  32. commands: ["givecratekey 4 {player} 5"],
  33. icon: "tripwirehook 5"
  34. },
  35. "10x Special Keys": {
  36. commands: ["givecratekey 4 {player} 10"],
  37. icon: "tripwirehook 10"
  38. },
  39. "3x Rare Money Pouches": {
  40. commands: ["givepouch {player} money rare 3"],
  41. icon: "enderchest 3",
  42. },
  43. "1x Legendary Money Pouches": {
  44. commands: ["givepouch {player} money legendary 1"],
  45. icon: "enderchest 1",
  46. },
  47. "5x Cow Spawner": {
  48. commands: ["give {player} 52:92 5 name:&eCow_Spawner"],
  49. icon: "52 5"
  50. },
  51. "10x Cow Spawner": {
  52. commands: ["give {player} 52:92 10 name:&eCow_Spawner"],
  53. icon: "52 10"
  54. },
  55. "1x Blaze Spawner": {
  56. commands: ["give {player} 52:61 1 name:&eBlaze_Spawner"],
  57. icon: "52 10"
  58. },
  59. "3x Blaze Spawner": {
  60. commands: ["give {player} 52:61 3 name:&eBlaze_Spawner"],
  61. icon: "52 10"
  62. },
  63. "5x Villager Spawner": {
  64. commands: ["give {player} 52:120 5 name:&eVillager_Spawner"],
  65. icon: "52 10"
  66. },
  67. "3x Villager Spawner": {
  68. commands: ["give {player} 52:120 3 name:&eVillager_Spawner"],
  69. icon: "52 10"
  70. },
  71. },
  72. bonusRewards: {
  73. "5x Iron Golem Spawner": {
  74. chance: 10,
  75. commands: ["give {player} 52:99 5 name:&eIron_Golem_Spawner"],
  76. icon: "52 3",
  77. },
  78. "3x Iron Golem Spawner": {
  79. chance: 25,
  80. commands: ["give {player} 52:99 3 name:&eIron_Golem_Spawner"],
  81. icon: "52 1",
  82. },
  83. "$5,000,000": {
  84. chance: 10,
  85. commands: ["eco give {player} 5000000"],
  86. icon: "paper 1"
  87. },
  88. "$2,500,000": {
  89. chance: 25,
  90. commands: ["eco give {player} 5000000"],
  91. icon: "paper 1"
  92. },
  93. "1x Monthly Crate": {
  94. chance: 20,
  95. commands: ["givemonthlycrate {player} 1"],
  96. icon: "enderchest 1",
  97. },
  98. "1x EnderDragon Egg": {
  99. chance: 30,
  100. commands: ["give {player} 122 1"],
  101. icon: "dragon_egg 1",
  102. },
  103. "1x Mighty Rank": {
  104. chance: 1,
  105. commands: ["padd {player} skyblock/group.donator.mighty"],
  106. icon: "paper 1",
  107. },
  108. },
  109. }
  110. })
  111.  
  112. autoload.watch("patches/content/monthlycrate.js")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement