View difference between Paste ID: 5HACtzgi and Tn3uzJUD
SHOW: | | - or go back to the newest paste.
1
exports.put("patches/content/monthlycrate", {
2
	normal: {
3
		"$2,500,000": {
4
			icon: "goldingot 1",
5
			chance: 7.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: 7,
20
            commands: [
21
                "givecraftwand {player}",
22
			],
23
		},
24-
		"3x Mob Hopper": {
24+
		"2x Mob Hopper": {
25
			icon: "hopper 1",
26
			chance: 5.5,
27
			commands: [
28-
				"givemobhopper {player} 3",
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
		"2x Villager Spawner": {
46
			icon: "mobspawner 1",
47
			chance: 2,
48
			commands: [
49
				"give {player} spawner 2 name:&eVillager_Spawner",
50
			],
51
		},
52-
        "4x Blaze Spawner": {
52+
53
            icon: "mobspawner 1",
54-
            chance: 3
54+
            chance: 4,
55
            commands: [
56-
                "give {player} spawner 5 name:&eBlaze_Spawner",
56+
57
            ],
58
        {,
59
        "320x Emerald Block": {
60
            icon: "emeraldblock 1",
61-
            chance: 5
61+
            chance: 8.5,
62
            commands: [
63
                "give {player} emeraldblock 320",
64
            ],
65
        {,
66
		"Monthly Pickaxe": {
67
			icon: "diamondpickaxe 1",
68-
            chance: 7
68+
69
			commands: [
70
				"give {player} diamondpickaxe 1 name:&f&l*_&d&lMonthly_Pickaxe_&f&l* efficiency:15 fortune:15 unbreaking:15",
71
			],
72
		},
73
		"MemeLord Kit Note": {
74
			icon: "paper 1",
75
			chance: 12.5,
76
			commands: [
77
				"givekitpaper {player} memelord",
78
			],
79
		},
80
	},
81
82
	final: {
83
		"$7,500,000": {
84
			icon: "goldingot 1",
85
			chance: 5,
86
			commands: [
87
				"eco give {player} 7500000",
88
			],
89
		},
90
		"$10,000,000": {
91
			icon: "goldingot 1",
92
			chance: 2.5,
93
			commands: [
94
				"eco give {player} 10000000",
95
            ],
96
         },
97
         "1,000 Mob Coins": {
98
            icon: "sunflower 1",
99
            chance: 2,
100
            commands: [
101
                "givemobcoins {player} 1000",
102
            ],
103
		},
104
		"3x Iron Golem Spawner": {
105
			icon: "mobspawner 1",
106
			chance: 1.5,
107
			commands: [
108
				"give {player} spawner 3 name:&eIron_Golem_Spawner",
109
			],
110
		},
111
		"1x Deep Storage Unit": {
112
			icon: "enderchest 1",
113
			chance: 1.8,
114
			commands: [
115
				"givedeepstorage {player} 1",
116
            ],
117
        },
118
		"Monthly Tools Kit": {
119
			icon: "diamondpickaxe 1",
120
			chance: 3,
121
			commands: [
122
				"givekitpaper {player} monthly",
123
			],
124
		},
125
        "6x Mob Hopper": {
126
            icon: "hopper 1": {
127
            chance: 8.5
128
            commands: [
129
               "givemobhopper {player} 6",
130
			],
131
		},
132
		"Memelord Rank Note (permanent)": {
133
			icon: "paper 1",
134
			chance: 0.00000001,
135
			commands: [
136
				"giverankcoupon {player} memelord",
137
			],
138
		},
139
		"Infinite Sell Wand": {
140
			icon: "goldhoe 1",
141
			chance: 7,
142
			commands: [
143
				"givesellwand {player}",
144
			],
145
		},
146
	}
147
})
148
149
autoload.watch("patches/content/monthlycrate.js")