farming-weight 0.11.1 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants/crops.js +14 -19
- package/dist/constants/crops.js.map +1 -1
- package/dist/constants/enchants.d.ts +1 -0
- package/dist/constants/enchants.js +35 -2
- package/dist/constants/enchants.js.map +1 -1
- package/dist/constants/garden.js +47 -52
- package/dist/constants/garden.js.map +1 -1
- package/dist/constants/reforges.js +18 -0
- package/dist/constants/reforges.js.map +1 -1
- package/dist/constants/specific.js +1 -1
- package/dist/constants/upgrades.d.ts +8 -3
- package/dist/constants/upgrades.js.map +1 -1
- package/dist/constants/weight.js +2 -0
- package/dist/constants/weight.js.map +1 -1
- package/dist/fortune/farmingaccessory.d.ts +1 -1
- package/dist/fortune/farmingaccessory.js +2 -2
- package/dist/fortune/farmingaccessory.js.map +1 -1
- package/dist/fortune/farmingarmor.d.ts +2 -2
- package/dist/fortune/farmingarmor.js +3 -3
- package/dist/fortune/farmingarmor.js.map +1 -1
- package/dist/fortune/farmingequipment.d.ts +1 -1
- package/dist/fortune/farmingequipment.js +2 -2
- package/dist/fortune/farmingequipment.js.map +1 -1
- package/dist/fortune/farmingtool.d.ts +8 -3
- package/dist/fortune/farmingtool.js +49 -81
- package/dist/fortune/farmingtool.js.map +1 -1
- package/dist/fortune/upgradeable.d.ts +10 -2
- package/dist/fortune/upgradeablebase.d.ts +1 -1
- package/dist/fortune/upgradeablebase.js +1 -1
- package/dist/fortune/upgradeablebase.js.map +1 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/dist/items/accessories.js +35 -3
- package/dist/items/accessories.js.map +1 -1
- package/dist/items/armor.js +280 -24
- package/dist/items/armor.js.map +1 -1
- package/dist/items/equipment.js +90 -2
- package/dist/items/equipment.js.map +1 -1
- package/dist/items/pets.d.ts +2 -1
- package/dist/items/pets.js +13 -0
- package/dist/items/pets.js.map +1 -1
- package/dist/items/tools.js +439 -953
- package/dist/items/tools.js.map +1 -1
- package/dist/player/player.js +3 -3
- package/dist/player/player.js.map +1 -1
- package/dist/player/playeroptions.d.ts +2 -0
- package/dist/player/playeroptions.js.map +1 -1
- package/dist/upgrades/enchantupgrades.d.ts +3 -1
- package/dist/upgrades/enchantupgrades.js +15 -4
- package/dist/upgrades/enchantupgrades.js.map +1 -1
- package/dist/upgrades/getsourceprogress.js +8 -4
- package/dist/upgrades/getsourceprogress.js.map +1 -1
- package/dist/upgrades/progress.js +4 -4
- package/dist/upgrades/progress.js.map +1 -1
- package/dist/upgrades/sources/armorsetsources.js +11 -11
- package/dist/upgrades/sources/armorsetsources.js.map +1 -1
- package/dist/upgrades/sources/cropsources.js +8 -8
- package/dist/upgrades/sources/cropsources.js.map +1 -1
- package/dist/upgrades/sources/dynamicfortunesources.d.ts +1 -0
- package/dist/upgrades/sources/gearsources.js +21 -10
- package/dist/upgrades/sources/gearsources.js.map +1 -1
- package/dist/upgrades/sources/generalsources.js +1 -1
- package/dist/upgrades/sources/generalsources.js.map +1 -1
- package/dist/upgrades/sources/toolsources.js +100 -84
- package/dist/upgrades/sources/toolsources.js.map +1 -1
- package/dist/upgrades/upgrades.js +48 -1
- package/dist/upgrades/upgrades.js.map +1 -1
- package/dist/upgrades/upgradeutils.js +21 -1
- package/dist/upgrades/upgradeutils.js.map +1 -1
- package/dist/util/ratecalc.d.ts +1 -0
- package/dist/util/ratecalc.js +22 -51
- package/dist/util/ratecalc.js.map +1 -1
- package/package.json +1 -1
- package/dist/crops/melon.d.ts +0 -1
- package/dist/crops/melon.js +0 -64
- package/dist/crops/melon.js.map +0 -1
- package/dist/crops/pumpkin.d.ts +0 -1
- package/dist/crops/pumpkin.js +0 -64
- package/dist/crops/pumpkin.js.map +0 -1
package/dist/items/tools.js
CHANGED
|
@@ -1,284 +1,298 @@
|
|
|
1
1
|
import { Crop } from '../constants/crops.js';
|
|
2
2
|
import { Rarity, ReforgeTarget } from '../constants/reforges.js';
|
|
3
|
-
import { Stat } from '../constants/stats.js';
|
|
4
3
|
import { UpgradeReason } from '../constants/upgrades.js';
|
|
5
4
|
import { FarmingToolType } from './definitions.js';
|
|
6
5
|
export { FarmingToolType };
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
value: 3,
|
|
30
|
-
},
|
|
31
|
-
},
|
|
32
|
-
[Rarity.Epic]: {
|
|
33
|
-
[Stat.FarmingFortune]: {
|
|
34
|
-
value: 10,
|
|
35
|
-
},
|
|
36
|
-
[Stat.FarmingWisdom]: {
|
|
37
|
-
value: 5,
|
|
38
|
-
},
|
|
39
|
-
},
|
|
40
|
-
[Rarity.Legendary]: {
|
|
41
|
-
[Stat.FarmingFortune]: {
|
|
42
|
-
value: 10,
|
|
43
|
-
},
|
|
44
|
-
[Stat.FarmingWisdom]: {
|
|
45
|
-
value: 8,
|
|
46
|
-
},
|
|
47
|
-
},
|
|
48
|
-
[Rarity.Mythic]: {
|
|
49
|
-
[Stat.FarmingFortune]: {
|
|
50
|
-
value: 10,
|
|
51
|
-
},
|
|
52
|
-
[Stat.FarmingWisdom]: {
|
|
53
|
-
value: 12,
|
|
54
|
-
},
|
|
55
|
-
},
|
|
56
|
-
};
|
|
57
|
-
const t2hoeStats = {
|
|
58
|
-
[Rarity.Common]: {
|
|
59
|
-
[Stat.FarmingFortune]: {
|
|
60
|
-
value: 25,
|
|
61
|
-
},
|
|
62
|
-
[Stat.FarmingWisdom]: {
|
|
63
|
-
value: 1,
|
|
64
|
-
},
|
|
65
|
-
},
|
|
66
|
-
[Rarity.Uncommon]: {
|
|
67
|
-
[Stat.FarmingFortune]: {
|
|
68
|
-
value: 25,
|
|
69
|
-
},
|
|
70
|
-
[Stat.FarmingWisdom]: {
|
|
71
|
-
value: 2,
|
|
72
|
-
},
|
|
73
|
-
},
|
|
74
|
-
[Rarity.Rare]: {
|
|
75
|
-
[Stat.FarmingFortune]: {
|
|
76
|
-
value: 25,
|
|
77
|
-
},
|
|
78
|
-
[Stat.FarmingWisdom]: {
|
|
79
|
-
value: 3,
|
|
80
|
-
},
|
|
81
|
-
},
|
|
82
|
-
[Rarity.Epic]: {
|
|
83
|
-
[Stat.FarmingFortune]: {
|
|
84
|
-
value: 25,
|
|
85
|
-
},
|
|
86
|
-
[Stat.FarmingWisdom]: {
|
|
87
|
-
value: 5,
|
|
88
|
-
},
|
|
6
|
+
const t1Gems = [
|
|
7
|
+
{
|
|
8
|
+
slot_type: 'PERIDOT',
|
|
9
|
+
costs: [
|
|
10
|
+
{
|
|
11
|
+
type: 'ITEM',
|
|
12
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
13
|
+
amount: 20,
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
type: 'COINS',
|
|
17
|
+
coins: 50000,
|
|
18
|
+
},
|
|
19
|
+
],
|
|
20
|
+
requirements: [
|
|
21
|
+
{
|
|
22
|
+
type: 'ITEM_DATA',
|
|
23
|
+
data_key: 'levelable_lvl',
|
|
24
|
+
value: '5',
|
|
25
|
+
operator: 'GREATER_THAN_OR_EQUALS',
|
|
26
|
+
},
|
|
27
|
+
],
|
|
89
28
|
},
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
29
|
+
{
|
|
30
|
+
slot_type: 'PERIDOT',
|
|
31
|
+
costs: [
|
|
32
|
+
{
|
|
33
|
+
type: 'ITEM',
|
|
34
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
35
|
+
amount: 40,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'COINS',
|
|
39
|
+
coins: 100000,
|
|
40
|
+
},
|
|
41
|
+
],
|
|
42
|
+
requirements: [
|
|
43
|
+
{
|
|
44
|
+
type: 'ITEM_DATA',
|
|
45
|
+
data_key: 'levelable_lvl',
|
|
46
|
+
value: '15',
|
|
47
|
+
operator: 'GREATER_THAN_OR_EQUALS',
|
|
48
|
+
},
|
|
49
|
+
],
|
|
97
50
|
},
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
51
|
+
];
|
|
52
|
+
const t2Gems = [
|
|
53
|
+
{
|
|
54
|
+
slot_type: 'PERIDOT',
|
|
55
|
+
costs: [
|
|
56
|
+
{
|
|
57
|
+
type: 'ITEM',
|
|
58
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
59
|
+
amount: 20,
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
type: 'COINS',
|
|
63
|
+
coins: 50000,
|
|
64
|
+
},
|
|
65
|
+
],
|
|
66
|
+
requirements: [
|
|
67
|
+
{
|
|
68
|
+
type: 'ITEM_DATA',
|
|
69
|
+
data_key: 'levelable_lvl',
|
|
70
|
+
value: '5',
|
|
71
|
+
operator: 'GREATER_THAN_OR_EQUALS',
|
|
72
|
+
},
|
|
73
|
+
],
|
|
105
74
|
},
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
75
|
+
{
|
|
76
|
+
slot_type: 'PERIDOT',
|
|
77
|
+
costs: [
|
|
78
|
+
{
|
|
79
|
+
type: 'ITEM',
|
|
80
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
81
|
+
amount: 40,
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
type: 'COINS',
|
|
85
|
+
coins: 100000,
|
|
86
|
+
},
|
|
87
|
+
],
|
|
88
|
+
requirements: [
|
|
89
|
+
{
|
|
90
|
+
type: 'ITEM_DATA',
|
|
91
|
+
data_key: 'levelable_lvl',
|
|
92
|
+
value: '15',
|
|
93
|
+
operator: 'GREATER_THAN_OR_EQUALS',
|
|
94
|
+
},
|
|
95
|
+
],
|
|
115
96
|
},
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
97
|
+
{
|
|
98
|
+
slot_type: 'PERIDOT',
|
|
99
|
+
costs: [
|
|
100
|
+
{
|
|
101
|
+
type: 'ITEM',
|
|
102
|
+
item_id: 'FLAWLESS_PERIDOT_GEM',
|
|
103
|
+
amount: 1,
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
type: 'COINS',
|
|
107
|
+
coins: 250000,
|
|
108
|
+
},
|
|
109
|
+
],
|
|
110
|
+
requirements: [
|
|
111
|
+
{
|
|
112
|
+
type: 'ITEM_DATA',
|
|
113
|
+
data_key: 'levelable_lvl',
|
|
114
|
+
value: '25',
|
|
115
|
+
operator: 'GREATER_THAN_OR_EQUALS',
|
|
116
|
+
},
|
|
117
|
+
],
|
|
123
118
|
},
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
119
|
+
];
|
|
120
|
+
const t3Gems = [
|
|
121
|
+
{
|
|
122
|
+
slot_type: 'PERIDOT',
|
|
123
|
+
costs: [
|
|
124
|
+
{
|
|
125
|
+
type: 'ITEM',
|
|
126
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
127
|
+
amount: 20,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'COINS',
|
|
131
|
+
coins: 50000,
|
|
132
|
+
},
|
|
133
|
+
],
|
|
134
|
+
requirements: [
|
|
135
|
+
{
|
|
136
|
+
type: 'ITEM_DATA',
|
|
137
|
+
data_key: 'levelable_lvl',
|
|
138
|
+
value: '5',
|
|
139
|
+
operator: 'GREATER_THAN_OR_EQUALS',
|
|
140
|
+
},
|
|
141
|
+
],
|
|
131
142
|
},
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
143
|
+
{
|
|
144
|
+
slot_type: 'PERIDOT',
|
|
145
|
+
costs: [
|
|
146
|
+
{
|
|
147
|
+
type: 'ITEM',
|
|
148
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
149
|
+
amount: 40,
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'COINS',
|
|
153
|
+
coins: 100000,
|
|
154
|
+
},
|
|
155
|
+
],
|
|
156
|
+
requirements: [
|
|
157
|
+
{
|
|
158
|
+
type: 'ITEM_DATA',
|
|
159
|
+
data_key: 'levelable_lvl',
|
|
160
|
+
value: '15',
|
|
161
|
+
operator: 'GREATER_THAN_OR_EQUALS',
|
|
162
|
+
},
|
|
163
|
+
],
|
|
139
164
|
},
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
165
|
+
{
|
|
166
|
+
slot_type: 'PERIDOT',
|
|
167
|
+
costs: [
|
|
168
|
+
{
|
|
169
|
+
type: 'ITEM',
|
|
170
|
+
item_id: 'FLAWLESS_PERIDOT_GEM',
|
|
171
|
+
amount: 1,
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
type: 'COINS',
|
|
175
|
+
coins: 250000,
|
|
176
|
+
},
|
|
177
|
+
],
|
|
178
|
+
requirements: [
|
|
179
|
+
{
|
|
180
|
+
type: 'ITEM_DATA',
|
|
181
|
+
data_key: 'levelable_lvl',
|
|
182
|
+
value: '25',
|
|
183
|
+
operator: 'GREATER_THAN_OR_EQUALS',
|
|
184
|
+
},
|
|
185
|
+
],
|
|
147
186
|
},
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
187
|
+
{
|
|
188
|
+
slot_type: 'PERIDOT',
|
|
189
|
+
costs: [
|
|
190
|
+
{
|
|
191
|
+
type: 'ITEM',
|
|
192
|
+
item_id: 'FLAWLESS_PERIDOT_GEM',
|
|
193
|
+
amount: 2,
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
type: 'COINS',
|
|
197
|
+
coins: 1000000,
|
|
198
|
+
},
|
|
199
|
+
],
|
|
200
|
+
requirements: [
|
|
201
|
+
{
|
|
202
|
+
type: 'ITEM_DATA',
|
|
203
|
+
data_key: 'levelable_lvl',
|
|
204
|
+
value: '50',
|
|
205
|
+
operator: 'GREATER_THAN_OR_EQUALS',
|
|
206
|
+
},
|
|
207
|
+
],
|
|
155
208
|
},
|
|
156
|
-
|
|
209
|
+
];
|
|
157
210
|
export const FARMING_TOOLS = {
|
|
158
211
|
CACTUS_KNIFE: {
|
|
159
212
|
skyblockId: 'CACTUS_KNIFE',
|
|
160
|
-
|
|
213
|
+
crops: [Crop.Cactus],
|
|
214
|
+
maxRarity: Rarity.Rare,
|
|
215
|
+
type: ReforgeTarget.Hoe,
|
|
216
|
+
gemSlots: t1Gems,
|
|
217
|
+
name: 'Cactus Knife Mk. I',
|
|
218
|
+
wiki: 'https://wiki.hypixel.net/Cactus_Knife',
|
|
219
|
+
},
|
|
220
|
+
CACTUS_KNIFE_2: {
|
|
221
|
+
skyblockId: 'CACTUS_KNIFE_2',
|
|
222
|
+
crops: [Crop.Cactus],
|
|
223
|
+
maxRarity: Rarity.Epic,
|
|
224
|
+
type: ReforgeTarget.Hoe,
|
|
225
|
+
gemSlots: t2Gems,
|
|
226
|
+
name: 'Cactus Knife Mk. II',
|
|
227
|
+
wiki: 'https://wiki.hypixel.net/Cactus_Knife',
|
|
228
|
+
},
|
|
229
|
+
CACTUS_KNIFE_3: {
|
|
230
|
+
skyblockId: 'CACTUS_KNIFE_3',
|
|
231
|
+
crops: [Crop.Cactus],
|
|
161
232
|
maxRarity: Rarity.Legendary,
|
|
162
233
|
type: ReforgeTarget.Hoe,
|
|
163
|
-
gemSlots:
|
|
164
|
-
|
|
165
|
-
slot_type: 'PERIDOT',
|
|
166
|
-
costs: [
|
|
167
|
-
{
|
|
168
|
-
type: 'ITEM',
|
|
169
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
170
|
-
amount: 20,
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
type: 'COINS',
|
|
174
|
-
coins: 50000,
|
|
175
|
-
},
|
|
176
|
-
],
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
slot_type: 'PERIDOT',
|
|
180
|
-
costs: [
|
|
181
|
-
{
|
|
182
|
-
type: 'ITEM',
|
|
183
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
184
|
-
amount: 40,
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
type: 'COINS',
|
|
188
|
-
coins: 100000,
|
|
189
|
-
},
|
|
190
|
-
],
|
|
191
|
-
},
|
|
192
|
-
],
|
|
193
|
-
name: 'Cactus Knife',
|
|
234
|
+
gemSlots: t3Gems,
|
|
235
|
+
name: 'Cactus Knife Mk. III',
|
|
194
236
|
wiki: 'https://wiki.hypixel.net/Cactus_Knife',
|
|
195
237
|
},
|
|
196
238
|
COCO_CHOPPER: {
|
|
197
239
|
skyblockId: 'COCO_CHOPPER',
|
|
198
|
-
|
|
240
|
+
crops: [Crop.CocoaBeans],
|
|
241
|
+
maxRarity: Rarity.Rare,
|
|
242
|
+
type: ReforgeTarget.Axe,
|
|
243
|
+
gemSlots: t1Gems,
|
|
244
|
+
name: 'Cocoa Chopper Mk. I',
|
|
245
|
+
wiki: 'https://wiki.hypixel.net/Cocoa_Chopper',
|
|
246
|
+
},
|
|
247
|
+
COCO_CHOPPER_2: {
|
|
248
|
+
skyblockId: 'COCO_CHOPPER_2',
|
|
249
|
+
crops: [Crop.CocoaBeans],
|
|
250
|
+
maxRarity: Rarity.Epic,
|
|
251
|
+
type: ReforgeTarget.Axe,
|
|
252
|
+
gemSlots: t2Gems,
|
|
253
|
+
name: 'Cocoa Chopper Mk. II',
|
|
254
|
+
wiki: 'https://wiki.hypixel.net/Cocoa_Chopper',
|
|
255
|
+
},
|
|
256
|
+
COCO_CHOPPER_3: {
|
|
257
|
+
skyblockId: 'COCO_CHOPPER_3',
|
|
258
|
+
crops: [Crop.CocoaBeans],
|
|
199
259
|
maxRarity: Rarity.Legendary,
|
|
200
260
|
type: ReforgeTarget.Axe,
|
|
201
|
-
gemSlots:
|
|
202
|
-
|
|
203
|
-
slot_type: 'PERIDOT',
|
|
204
|
-
costs: [
|
|
205
|
-
{
|
|
206
|
-
type: 'ITEM',
|
|
207
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
208
|
-
amount: 20,
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
type: 'COINS',
|
|
212
|
-
coins: 50000,
|
|
213
|
-
},
|
|
214
|
-
],
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
slot_type: 'PERIDOT',
|
|
218
|
-
costs: [
|
|
219
|
-
{
|
|
220
|
-
type: 'ITEM',
|
|
221
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
222
|
-
amount: 40,
|
|
223
|
-
},
|
|
224
|
-
{
|
|
225
|
-
type: 'COINS',
|
|
226
|
-
coins: 100000,
|
|
227
|
-
},
|
|
228
|
-
],
|
|
229
|
-
},
|
|
230
|
-
],
|
|
231
|
-
name: 'Cocoa Chopper',
|
|
261
|
+
gemSlots: t3Gems,
|
|
262
|
+
name: 'Cocoa Chopper Mk. III',
|
|
232
263
|
wiki: 'https://wiki.hypixel.net/Cocoa_Chopper',
|
|
233
|
-
baseStats: {
|
|
234
|
-
[Stat.FarmingFortune]: 20,
|
|
235
|
-
},
|
|
236
264
|
},
|
|
237
265
|
FUNGI_CUTTER: {
|
|
238
266
|
skyblockId: 'FUNGI_CUTTER',
|
|
239
|
-
|
|
267
|
+
crops: [Crop.Mushroom],
|
|
268
|
+
maxRarity: Rarity.Rare,
|
|
269
|
+
type: ReforgeTarget.Hoe,
|
|
270
|
+
gemSlots: t1Gems,
|
|
271
|
+
name: 'Fungi Cutter Mk. I',
|
|
272
|
+
wiki: 'https://wiki.hypixel.net/Fungi_Cutter',
|
|
273
|
+
},
|
|
274
|
+
FUNGI_CUTTER_2: {
|
|
275
|
+
skyblockId: 'FUNGI_CUTTER_2',
|
|
276
|
+
crops: [Crop.Mushroom],
|
|
277
|
+
maxRarity: Rarity.Epic,
|
|
278
|
+
type: ReforgeTarget.Hoe,
|
|
279
|
+
gemSlots: t2Gems,
|
|
280
|
+
name: 'Fungi Cutter Mk. II',
|
|
281
|
+
wiki: 'https://wiki.hypixel.net/Fungi_Cutter',
|
|
282
|
+
},
|
|
283
|
+
FUNGI_CUTTER_3: {
|
|
284
|
+
skyblockId: 'FUNGI_CUTTER_3',
|
|
285
|
+
crops: [Crop.Mushroom],
|
|
240
286
|
maxRarity: Rarity.Legendary,
|
|
241
287
|
type: ReforgeTarget.Hoe,
|
|
242
|
-
gemSlots:
|
|
243
|
-
|
|
244
|
-
slot_type: 'PERIDOT',
|
|
245
|
-
costs: [
|
|
246
|
-
{
|
|
247
|
-
type: 'ITEM',
|
|
248
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
249
|
-
amount: 20,
|
|
250
|
-
},
|
|
251
|
-
{
|
|
252
|
-
type: 'COINS',
|
|
253
|
-
coins: 50000,
|
|
254
|
-
},
|
|
255
|
-
],
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
slot_type: 'PERIDOT',
|
|
259
|
-
costs: [
|
|
260
|
-
{
|
|
261
|
-
type: 'ITEM',
|
|
262
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
263
|
-
amount: 40,
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
type: 'COINS',
|
|
267
|
-
coins: 100000,
|
|
268
|
-
},
|
|
269
|
-
],
|
|
270
|
-
},
|
|
271
|
-
],
|
|
272
|
-
name: 'Fungi Cutter',
|
|
288
|
+
gemSlots: t3Gems,
|
|
289
|
+
name: 'Fungi Cutter Mk. III',
|
|
273
290
|
wiki: 'https://wiki.hypixel.net/Fungi_Cutter',
|
|
274
|
-
baseStats: {
|
|
275
|
-
[Stat.FarmingFortune]: 30,
|
|
276
|
-
},
|
|
277
291
|
},
|
|
278
292
|
MELON_DICER: {
|
|
279
293
|
skyblockId: 'MELON_DICER',
|
|
280
|
-
|
|
281
|
-
maxRarity: Rarity.
|
|
294
|
+
crops: [Crop.Melon],
|
|
295
|
+
maxRarity: Rarity.Rare,
|
|
282
296
|
type: FarmingToolType.Dicer,
|
|
283
297
|
upgrade: {
|
|
284
298
|
id: 'MELON_DICER_2',
|
|
@@ -289,29 +303,14 @@ export const FARMING_TOOLS = {
|
|
|
289
303
|
},
|
|
290
304
|
},
|
|
291
305
|
},
|
|
292
|
-
gemSlots:
|
|
293
|
-
|
|
294
|
-
slot_type: 'PERIDOT',
|
|
295
|
-
costs: [
|
|
296
|
-
{
|
|
297
|
-
type: 'ITEM',
|
|
298
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
299
|
-
amount: 20,
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
type: 'COINS',
|
|
303
|
-
coins: 50000,
|
|
304
|
-
},
|
|
305
|
-
],
|
|
306
|
-
},
|
|
307
|
-
],
|
|
308
|
-
name: 'Melon Dicer',
|
|
306
|
+
gemSlots: t1Gems,
|
|
307
|
+
name: 'Melon Dicer Mk. I',
|
|
309
308
|
wiki: 'https://wiki.hypixel.net/Melon_Dicer',
|
|
310
309
|
},
|
|
311
310
|
MELON_DICER_2: {
|
|
312
311
|
skyblockId: 'MELON_DICER_2',
|
|
313
|
-
|
|
314
|
-
maxRarity: Rarity.
|
|
312
|
+
crops: [Crop.Melon],
|
|
313
|
+
maxRarity: Rarity.Epic,
|
|
315
314
|
type: FarmingToolType.Dicer,
|
|
316
315
|
upgrade: {
|
|
317
316
|
id: 'MELON_DICER_3',
|
|
@@ -322,95 +321,23 @@ export const FARMING_TOOLS = {
|
|
|
322
321
|
},
|
|
323
322
|
},
|
|
324
323
|
},
|
|
325
|
-
gemSlots:
|
|
326
|
-
|
|
327
|
-
slot_type: 'PERIDOT',
|
|
328
|
-
costs: [
|
|
329
|
-
{
|
|
330
|
-
type: 'ITEM',
|
|
331
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
332
|
-
amount: 20,
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
type: 'COINS',
|
|
336
|
-
coins: 50000,
|
|
337
|
-
},
|
|
338
|
-
],
|
|
339
|
-
},
|
|
340
|
-
{
|
|
341
|
-
slot_type: 'PERIDOT',
|
|
342
|
-
costs: [
|
|
343
|
-
{
|
|
344
|
-
type: 'ITEM',
|
|
345
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
346
|
-
amount: 40,
|
|
347
|
-
},
|
|
348
|
-
{
|
|
349
|
-
type: 'COINS',
|
|
350
|
-
coins: 100000,
|
|
351
|
-
},
|
|
352
|
-
],
|
|
353
|
-
},
|
|
354
|
-
],
|
|
355
|
-
name: 'Melon Dicer 2.0',
|
|
324
|
+
gemSlots: t2Gems,
|
|
325
|
+
name: 'Melon Dicer Mk. II',
|
|
356
326
|
wiki: 'https://wiki.hypixel.net/Melon_Dicer_2.0',
|
|
357
327
|
},
|
|
358
328
|
MELON_DICER_3: {
|
|
359
329
|
skyblockId: 'MELON_DICER_3',
|
|
360
|
-
|
|
361
|
-
maxRarity: Rarity.
|
|
330
|
+
crops: [Crop.Melon],
|
|
331
|
+
maxRarity: Rarity.Legendary,
|
|
362
332
|
type: FarmingToolType.Dicer,
|
|
363
|
-
gemSlots:
|
|
364
|
-
|
|
365
|
-
slot_type: 'PERIDOT',
|
|
366
|
-
costs: [
|
|
367
|
-
{
|
|
368
|
-
type: 'ITEM',
|
|
369
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
370
|
-
amount: 20,
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
type: 'COINS',
|
|
374
|
-
coins: 50000,
|
|
375
|
-
},
|
|
376
|
-
],
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
slot_type: 'PERIDOT',
|
|
380
|
-
costs: [
|
|
381
|
-
{
|
|
382
|
-
type: 'ITEM',
|
|
383
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
384
|
-
amount: 40,
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
type: 'COINS',
|
|
388
|
-
coins: 100000,
|
|
389
|
-
},
|
|
390
|
-
],
|
|
391
|
-
},
|
|
392
|
-
{
|
|
393
|
-
slot_type: 'PERIDOT',
|
|
394
|
-
costs: [
|
|
395
|
-
{
|
|
396
|
-
type: 'ITEM',
|
|
397
|
-
item_id: 'FLAWLESS_PERIDOT_GEM',
|
|
398
|
-
amount: 1,
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
type: 'COINS',
|
|
402
|
-
coins: 250000,
|
|
403
|
-
},
|
|
404
|
-
],
|
|
405
|
-
},
|
|
406
|
-
],
|
|
407
|
-
name: 'Melon Dicer 3.0',
|
|
333
|
+
gemSlots: t3Gems,
|
|
334
|
+
name: 'Melon Dicer Mk. III',
|
|
408
335
|
wiki: 'https://wiki.hypixel.net/Melon_Dicer_3.0',
|
|
409
336
|
},
|
|
410
337
|
PUMPKIN_DICER: {
|
|
411
338
|
skyblockId: 'PUMPKIN_DICER',
|
|
412
|
-
|
|
413
|
-
maxRarity: Rarity.
|
|
339
|
+
crops: [Crop.Pumpkin],
|
|
340
|
+
maxRarity: Rarity.Rare,
|
|
414
341
|
type: FarmingToolType.Dicer,
|
|
415
342
|
upgrade: {
|
|
416
343
|
id: 'PUMPKIN_DICER_2',
|
|
@@ -421,60 +348,16 @@ export const FARMING_TOOLS = {
|
|
|
421
348
|
},
|
|
422
349
|
},
|
|
423
350
|
},
|
|
424
|
-
gemSlots:
|
|
425
|
-
|
|
426
|
-
slot_type: 'PERIDOT',
|
|
427
|
-
costs: [
|
|
428
|
-
{
|
|
429
|
-
type: 'ITEM',
|
|
430
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
431
|
-
amount: 20,
|
|
432
|
-
},
|
|
433
|
-
{
|
|
434
|
-
type: 'COINS',
|
|
435
|
-
coins: 50000,
|
|
436
|
-
},
|
|
437
|
-
],
|
|
438
|
-
},
|
|
439
|
-
],
|
|
440
|
-
name: 'Pumpkin Dicer',
|
|
351
|
+
gemSlots: t1Gems,
|
|
352
|
+
name: 'Pumpkin Dicer Mk. I',
|
|
441
353
|
wiki: 'https://wiki.hypixel.net/Pumpkin_Dicer',
|
|
442
354
|
},
|
|
443
355
|
PUMPKIN_DICER_2: {
|
|
444
356
|
skyblockId: 'PUMPKIN_DICER_2',
|
|
445
|
-
|
|
446
|
-
maxRarity: Rarity.
|
|
357
|
+
crops: [Crop.Pumpkin],
|
|
358
|
+
maxRarity: Rarity.Epic,
|
|
447
359
|
type: FarmingToolType.Dicer,
|
|
448
|
-
gemSlots:
|
|
449
|
-
{
|
|
450
|
-
slot_type: 'PERIDOT',
|
|
451
|
-
costs: [
|
|
452
|
-
{
|
|
453
|
-
type: 'ITEM',
|
|
454
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
455
|
-
amount: 20,
|
|
456
|
-
},
|
|
457
|
-
{
|
|
458
|
-
type: 'COINS',
|
|
459
|
-
coins: 50000,
|
|
460
|
-
},
|
|
461
|
-
],
|
|
462
|
-
},
|
|
463
|
-
{
|
|
464
|
-
slot_type: 'PERIDOT',
|
|
465
|
-
costs: [
|
|
466
|
-
{
|
|
467
|
-
type: 'ITEM',
|
|
468
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
469
|
-
amount: 40,
|
|
470
|
-
},
|
|
471
|
-
{
|
|
472
|
-
type: 'COINS',
|
|
473
|
-
coins: 100000,
|
|
474
|
-
},
|
|
475
|
-
],
|
|
476
|
-
},
|
|
477
|
-
],
|
|
360
|
+
gemSlots: t2Gems,
|
|
478
361
|
upgrade: {
|
|
479
362
|
id: 'PUMPKIN_DICER_3',
|
|
480
363
|
reason: UpgradeReason.NextTier,
|
|
@@ -484,65 +367,22 @@ export const FARMING_TOOLS = {
|
|
|
484
367
|
},
|
|
485
368
|
},
|
|
486
369
|
},
|
|
487
|
-
name: 'Pumpkin Dicer
|
|
370
|
+
name: 'Pumpkin Dicer Mk. II',
|
|
488
371
|
wiki: 'https://wiki.hypixel.net/Pumpkin_Dicer_2.0',
|
|
489
372
|
},
|
|
490
373
|
PUMPKIN_DICER_3: {
|
|
491
374
|
skyblockId: 'PUMPKIN_DICER_3',
|
|
492
|
-
|
|
493
|
-
maxRarity: Rarity.
|
|
375
|
+
crops: [Crop.Pumpkin],
|
|
376
|
+
maxRarity: Rarity.Legendary,
|
|
494
377
|
type: FarmingToolType.Dicer,
|
|
495
|
-
gemSlots:
|
|
496
|
-
|
|
497
|
-
slot_type: 'PERIDOT',
|
|
498
|
-
costs: [
|
|
499
|
-
{
|
|
500
|
-
type: 'ITEM',
|
|
501
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
502
|
-
amount: 20,
|
|
503
|
-
},
|
|
504
|
-
{
|
|
505
|
-
type: 'COINS',
|
|
506
|
-
coins: 50000,
|
|
507
|
-
},
|
|
508
|
-
],
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
slot_type: 'PERIDOT',
|
|
512
|
-
costs: [
|
|
513
|
-
{
|
|
514
|
-
type: 'ITEM',
|
|
515
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
516
|
-
amount: 40,
|
|
517
|
-
},
|
|
518
|
-
{
|
|
519
|
-
type: 'COINS',
|
|
520
|
-
coins: 100000,
|
|
521
|
-
},
|
|
522
|
-
],
|
|
523
|
-
},
|
|
524
|
-
{
|
|
525
|
-
slot_type: 'PERIDOT',
|
|
526
|
-
costs: [
|
|
527
|
-
{
|
|
528
|
-
type: 'ITEM',
|
|
529
|
-
item_id: 'FLAWLESS_PERIDOT_GEM',
|
|
530
|
-
amount: 1,
|
|
531
|
-
},
|
|
532
|
-
{
|
|
533
|
-
type: 'COINS',
|
|
534
|
-
coins: 250000,
|
|
535
|
-
},
|
|
536
|
-
],
|
|
537
|
-
},
|
|
538
|
-
],
|
|
539
|
-
name: 'Pumpkin Dicer 3.0',
|
|
378
|
+
gemSlots: t3Gems,
|
|
379
|
+
name: 'Pumpkin Dicer Mk. III',
|
|
540
380
|
wiki: 'https://wiki.hypixel.net/Pumpkin_Dicer_3.0',
|
|
541
381
|
},
|
|
542
382
|
THEORETICAL_HOE_CARROT_1: {
|
|
543
383
|
skyblockId: 'THEORETICAL_HOE_CARROT_1',
|
|
544
|
-
|
|
545
|
-
maxRarity: Rarity.
|
|
384
|
+
crops: [Crop.Carrot],
|
|
385
|
+
maxRarity: Rarity.Rare,
|
|
546
386
|
type: FarmingToolType.MathematicalHoe,
|
|
547
387
|
upgrade: {
|
|
548
388
|
id: 'THEORETICAL_HOE_CARROT_2',
|
|
@@ -554,30 +394,14 @@ export const FARMING_TOOLS = {
|
|
|
554
394
|
},
|
|
555
395
|
},
|
|
556
396
|
},
|
|
557
|
-
gemSlots:
|
|
558
|
-
|
|
559
|
-
slot_type: 'PERIDOT',
|
|
560
|
-
costs: [
|
|
561
|
-
{
|
|
562
|
-
type: 'ITEM',
|
|
563
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
564
|
-
amount: 20,
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
type: 'COINS',
|
|
568
|
-
coins: 50000,
|
|
569
|
-
},
|
|
570
|
-
],
|
|
571
|
-
},
|
|
572
|
-
],
|
|
573
|
-
name: 'Gauss Carrot Hoe',
|
|
397
|
+
gemSlots: t1Gems,
|
|
398
|
+
name: 'Gauss Carrot Hoe Mk. I',
|
|
574
399
|
wiki: 'https://wiki.hypixel.net/Gauss_Carrot_Hoe#Common_',
|
|
575
|
-
stats: t1hoeStats,
|
|
576
400
|
},
|
|
577
401
|
THEORETICAL_HOE_CARROT_2: {
|
|
578
402
|
skyblockId: 'THEORETICAL_HOE_CARROT_2',
|
|
579
|
-
|
|
580
|
-
maxRarity: Rarity.
|
|
403
|
+
crops: [Crop.Carrot],
|
|
404
|
+
maxRarity: Rarity.Epic,
|
|
581
405
|
type: FarmingToolType.MathematicalHoe,
|
|
582
406
|
upgrade: {
|
|
583
407
|
id: 'THEORETICAL_HOE_CARROT_3',
|
|
@@ -589,97 +413,23 @@ export const FARMING_TOOLS = {
|
|
|
589
413
|
},
|
|
590
414
|
},
|
|
591
415
|
},
|
|
592
|
-
gemSlots:
|
|
593
|
-
|
|
594
|
-
slot_type: 'PERIDOT',
|
|
595
|
-
costs: [
|
|
596
|
-
{
|
|
597
|
-
type: 'ITEM',
|
|
598
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
599
|
-
amount: 20,
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
type: 'COINS',
|
|
603
|
-
coins: 50000,
|
|
604
|
-
},
|
|
605
|
-
],
|
|
606
|
-
},
|
|
607
|
-
{
|
|
608
|
-
slot_type: 'PERIDOT',
|
|
609
|
-
costs: [
|
|
610
|
-
{
|
|
611
|
-
type: 'ITEM',
|
|
612
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
613
|
-
amount: 40,
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
type: 'COINS',
|
|
617
|
-
coins: 100000,
|
|
618
|
-
},
|
|
619
|
-
],
|
|
620
|
-
},
|
|
621
|
-
],
|
|
622
|
-
name: 'Gauss Carrot Hoe',
|
|
416
|
+
gemSlots: t2Gems,
|
|
417
|
+
name: 'Gauss Carrot Hoe Mk. II',
|
|
623
418
|
wiki: 'https://wiki.hypixel.net/Gauss_Carrot_Hoe#Uncommon_',
|
|
624
|
-
stats: t2hoeStats,
|
|
625
419
|
},
|
|
626
420
|
THEORETICAL_HOE_CARROT_3: {
|
|
627
421
|
skyblockId: 'THEORETICAL_HOE_CARROT_3',
|
|
628
|
-
|
|
629
|
-
maxRarity: Rarity.
|
|
422
|
+
crops: [Crop.Carrot],
|
|
423
|
+
maxRarity: Rarity.Legendary,
|
|
630
424
|
type: FarmingToolType.MathematicalHoe,
|
|
631
|
-
gemSlots:
|
|
632
|
-
|
|
633
|
-
slot_type: 'PERIDOT',
|
|
634
|
-
costs: [
|
|
635
|
-
{
|
|
636
|
-
type: 'ITEM',
|
|
637
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
638
|
-
amount: 20,
|
|
639
|
-
},
|
|
640
|
-
{
|
|
641
|
-
type: 'COINS',
|
|
642
|
-
coins: 50000,
|
|
643
|
-
},
|
|
644
|
-
],
|
|
645
|
-
},
|
|
646
|
-
{
|
|
647
|
-
slot_type: 'PERIDOT',
|
|
648
|
-
costs: [
|
|
649
|
-
{
|
|
650
|
-
type: 'ITEM',
|
|
651
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
652
|
-
amount: 40,
|
|
653
|
-
},
|
|
654
|
-
{
|
|
655
|
-
type: 'COINS',
|
|
656
|
-
coins: 100000,
|
|
657
|
-
},
|
|
658
|
-
],
|
|
659
|
-
},
|
|
660
|
-
{
|
|
661
|
-
slot_type: 'PERIDOT',
|
|
662
|
-
costs: [
|
|
663
|
-
{
|
|
664
|
-
type: 'ITEM',
|
|
665
|
-
item_id: 'FLAWLESS_PERIDOT_GEM',
|
|
666
|
-
amount: 1,
|
|
667
|
-
},
|
|
668
|
-
{
|
|
669
|
-
type: 'COINS',
|
|
670
|
-
coins: 250000,
|
|
671
|
-
},
|
|
672
|
-
],
|
|
673
|
-
},
|
|
674
|
-
],
|
|
675
|
-
name: 'Gauss Carrot Hoe',
|
|
425
|
+
gemSlots: t3Gems,
|
|
426
|
+
name: 'Gauss Carrot Hoe Mk. III',
|
|
676
427
|
wiki: 'https://wiki.hypixel.net/Gauss_Carrot_Hoe#Rare_',
|
|
677
|
-
stats: t3hoeStats,
|
|
678
428
|
},
|
|
679
429
|
THEORETICAL_HOE_WARTS_1: {
|
|
680
430
|
skyblockId: 'THEORETICAL_HOE_WARTS_1',
|
|
681
|
-
|
|
682
|
-
maxRarity: Rarity.
|
|
431
|
+
crops: [Crop.NetherWart],
|
|
432
|
+
maxRarity: Rarity.Rare,
|
|
683
433
|
type: FarmingToolType.MathematicalHoe,
|
|
684
434
|
upgrade: {
|
|
685
435
|
id: 'THEORETICAL_HOE_WARTS_2',
|
|
@@ -691,30 +441,14 @@ export const FARMING_TOOLS = {
|
|
|
691
441
|
},
|
|
692
442
|
},
|
|
693
443
|
},
|
|
694
|
-
gemSlots:
|
|
695
|
-
|
|
696
|
-
slot_type: 'PERIDOT',
|
|
697
|
-
costs: [
|
|
698
|
-
{
|
|
699
|
-
type: 'ITEM',
|
|
700
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
701
|
-
amount: 20,
|
|
702
|
-
},
|
|
703
|
-
{
|
|
704
|
-
type: 'COINS',
|
|
705
|
-
coins: 50000,
|
|
706
|
-
},
|
|
707
|
-
],
|
|
708
|
-
},
|
|
709
|
-
],
|
|
710
|
-
name: 'Newton Nether Warts Hoe',
|
|
444
|
+
gemSlots: t1Gems,
|
|
445
|
+
name: 'Newton Nether Warts Hoe Mk. I',
|
|
711
446
|
wiki: 'https://wiki.hypixel.net/Newton_Nether_Warts_Hoe#Common_',
|
|
712
|
-
stats: t1hoeStats,
|
|
713
447
|
},
|
|
714
448
|
THEORETICAL_HOE_WARTS_2: {
|
|
715
449
|
skyblockId: 'THEORETICAL_HOE_WARTS_2',
|
|
716
|
-
|
|
717
|
-
maxRarity: Rarity.
|
|
450
|
+
crops: [Crop.NetherWart],
|
|
451
|
+
maxRarity: Rarity.Epic,
|
|
718
452
|
type: FarmingToolType.MathematicalHoe,
|
|
719
453
|
upgrade: {
|
|
720
454
|
id: 'THEORETICAL_HOE_WARTS_3',
|
|
@@ -726,97 +460,23 @@ export const FARMING_TOOLS = {
|
|
|
726
460
|
},
|
|
727
461
|
},
|
|
728
462
|
},
|
|
729
|
-
gemSlots:
|
|
730
|
-
|
|
731
|
-
slot_type: 'PERIDOT',
|
|
732
|
-
costs: [
|
|
733
|
-
{
|
|
734
|
-
type: 'ITEM',
|
|
735
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
736
|
-
amount: 20,
|
|
737
|
-
},
|
|
738
|
-
{
|
|
739
|
-
type: 'COINS',
|
|
740
|
-
coins: 50000,
|
|
741
|
-
},
|
|
742
|
-
],
|
|
743
|
-
},
|
|
744
|
-
{
|
|
745
|
-
slot_type: 'PERIDOT',
|
|
746
|
-
costs: [
|
|
747
|
-
{
|
|
748
|
-
type: 'ITEM',
|
|
749
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
750
|
-
amount: 40,
|
|
751
|
-
},
|
|
752
|
-
{
|
|
753
|
-
type: 'COINS',
|
|
754
|
-
coins: 100000,
|
|
755
|
-
},
|
|
756
|
-
],
|
|
757
|
-
},
|
|
758
|
-
],
|
|
759
|
-
name: 'Newton Nether Warts Hoe',
|
|
463
|
+
gemSlots: t2Gems,
|
|
464
|
+
name: 'Newton Nether Warts Hoe Mk. II',
|
|
760
465
|
wiki: 'https://wiki.hypixel.net/Newton_Nether_Warts_Hoe#Uncommon_',
|
|
761
|
-
stats: t2hoeStats,
|
|
762
466
|
},
|
|
763
467
|
THEORETICAL_HOE_WARTS_3: {
|
|
764
468
|
skyblockId: 'THEORETICAL_HOE_WARTS_3',
|
|
765
|
-
|
|
766
|
-
maxRarity: Rarity.
|
|
469
|
+
crops: [Crop.NetherWart],
|
|
470
|
+
maxRarity: Rarity.Legendary,
|
|
767
471
|
type: FarmingToolType.MathematicalHoe,
|
|
768
|
-
gemSlots:
|
|
769
|
-
|
|
770
|
-
slot_type: 'PERIDOT',
|
|
771
|
-
costs: [
|
|
772
|
-
{
|
|
773
|
-
type: 'ITEM',
|
|
774
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
775
|
-
amount: 20,
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
type: 'COINS',
|
|
779
|
-
coins: 50000,
|
|
780
|
-
},
|
|
781
|
-
],
|
|
782
|
-
},
|
|
783
|
-
{
|
|
784
|
-
slot_type: 'PERIDOT',
|
|
785
|
-
costs: [
|
|
786
|
-
{
|
|
787
|
-
type: 'ITEM',
|
|
788
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
789
|
-
amount: 40,
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
type: 'COINS',
|
|
793
|
-
coins: 100000,
|
|
794
|
-
},
|
|
795
|
-
],
|
|
796
|
-
},
|
|
797
|
-
{
|
|
798
|
-
slot_type: 'PERIDOT',
|
|
799
|
-
costs: [
|
|
800
|
-
{
|
|
801
|
-
type: 'ITEM',
|
|
802
|
-
item_id: 'FLAWLESS_PERIDOT_GEM',
|
|
803
|
-
amount: 1,
|
|
804
|
-
},
|
|
805
|
-
{
|
|
806
|
-
type: 'COINS',
|
|
807
|
-
coins: 250000,
|
|
808
|
-
},
|
|
809
|
-
],
|
|
810
|
-
},
|
|
811
|
-
],
|
|
812
|
-
name: 'Newton Nether Warts Hoe',
|
|
472
|
+
gemSlots: t3Gems,
|
|
473
|
+
name: 'Newton Nether Warts Hoe Mk. III',
|
|
813
474
|
wiki: 'https://wiki.hypixel.net/Newton_Nether_Warts_Hoe#Rare_',
|
|
814
|
-
stats: t3hoeStats,
|
|
815
475
|
},
|
|
816
476
|
THEORETICAL_HOE_POTATO_1: {
|
|
817
477
|
skyblockId: 'THEORETICAL_HOE_POTATO_1',
|
|
818
|
-
|
|
819
|
-
maxRarity: Rarity.
|
|
478
|
+
crops: [Crop.Potato],
|
|
479
|
+
maxRarity: Rarity.Rare,
|
|
820
480
|
type: FarmingToolType.MathematicalHoe,
|
|
821
481
|
upgrade: {
|
|
822
482
|
id: 'THEORETICAL_HOE_POTATO_2',
|
|
@@ -828,30 +488,14 @@ export const FARMING_TOOLS = {
|
|
|
828
488
|
},
|
|
829
489
|
},
|
|
830
490
|
},
|
|
831
|
-
gemSlots:
|
|
832
|
-
|
|
833
|
-
slot_type: 'PERIDOT',
|
|
834
|
-
costs: [
|
|
835
|
-
{
|
|
836
|
-
type: 'ITEM',
|
|
837
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
838
|
-
amount: 20,
|
|
839
|
-
},
|
|
840
|
-
{
|
|
841
|
-
type: 'COINS',
|
|
842
|
-
coins: 50000,
|
|
843
|
-
},
|
|
844
|
-
],
|
|
845
|
-
},
|
|
846
|
-
],
|
|
847
|
-
name: 'Pythagorean Potato Hoe',
|
|
491
|
+
gemSlots: t1Gems,
|
|
492
|
+
name: 'Pythagorean Potato Hoe Mk. I',
|
|
848
493
|
wiki: 'https://wiki.hypixel.net/Pythagorean_Potato_Hoe#Common_',
|
|
849
|
-
stats: t1hoeStats,
|
|
850
494
|
},
|
|
851
495
|
THEORETICAL_HOE_POTATO_2: {
|
|
852
496
|
skyblockId: 'THEORETICAL_HOE_POTATO_2',
|
|
853
|
-
|
|
854
|
-
maxRarity: Rarity.
|
|
497
|
+
crops: [Crop.Potato],
|
|
498
|
+
maxRarity: Rarity.Epic,
|
|
855
499
|
type: FarmingToolType.MathematicalHoe,
|
|
856
500
|
upgrade: {
|
|
857
501
|
id: 'THEORETICAL_HOE_POTATO_3',
|
|
@@ -863,97 +507,23 @@ export const FARMING_TOOLS = {
|
|
|
863
507
|
},
|
|
864
508
|
},
|
|
865
509
|
},
|
|
866
|
-
gemSlots:
|
|
867
|
-
|
|
868
|
-
slot_type: 'PERIDOT',
|
|
869
|
-
costs: [
|
|
870
|
-
{
|
|
871
|
-
type: 'ITEM',
|
|
872
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
873
|
-
amount: 20,
|
|
874
|
-
},
|
|
875
|
-
{
|
|
876
|
-
type: 'COINS',
|
|
877
|
-
coins: 50000,
|
|
878
|
-
},
|
|
879
|
-
],
|
|
880
|
-
},
|
|
881
|
-
{
|
|
882
|
-
slot_type: 'PERIDOT',
|
|
883
|
-
costs: [
|
|
884
|
-
{
|
|
885
|
-
type: 'ITEM',
|
|
886
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
887
|
-
amount: 40,
|
|
888
|
-
},
|
|
889
|
-
{
|
|
890
|
-
type: 'COINS',
|
|
891
|
-
coins: 100000,
|
|
892
|
-
},
|
|
893
|
-
],
|
|
894
|
-
},
|
|
895
|
-
],
|
|
896
|
-
name: 'Pythagorean Potato Hoe',
|
|
510
|
+
gemSlots: t2Gems,
|
|
511
|
+
name: 'Pythagorean Potato Hoe Mk. II',
|
|
897
512
|
wiki: 'https://wiki.hypixel.net/Pythagorean_Potato_Hoe#Uncommon_',
|
|
898
|
-
stats: t2hoeStats,
|
|
899
513
|
},
|
|
900
514
|
THEORETICAL_HOE_POTATO_3: {
|
|
901
515
|
skyblockId: 'THEORETICAL_HOE_POTATO_3',
|
|
902
|
-
|
|
903
|
-
maxRarity: Rarity.
|
|
516
|
+
crops: [Crop.Potato],
|
|
517
|
+
maxRarity: Rarity.Legendary,
|
|
904
518
|
type: FarmingToolType.MathematicalHoe,
|
|
905
|
-
gemSlots:
|
|
906
|
-
|
|
907
|
-
slot_type: 'PERIDOT',
|
|
908
|
-
costs: [
|
|
909
|
-
{
|
|
910
|
-
type: 'ITEM',
|
|
911
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
912
|
-
amount: 20,
|
|
913
|
-
},
|
|
914
|
-
{
|
|
915
|
-
type: 'COINS',
|
|
916
|
-
coins: 50000,
|
|
917
|
-
},
|
|
918
|
-
],
|
|
919
|
-
},
|
|
920
|
-
{
|
|
921
|
-
slot_type: 'PERIDOT',
|
|
922
|
-
costs: [
|
|
923
|
-
{
|
|
924
|
-
type: 'ITEM',
|
|
925
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
926
|
-
amount: 40,
|
|
927
|
-
},
|
|
928
|
-
{
|
|
929
|
-
type: 'COINS',
|
|
930
|
-
coins: 100000,
|
|
931
|
-
},
|
|
932
|
-
],
|
|
933
|
-
},
|
|
934
|
-
{
|
|
935
|
-
slot_type: 'PERIDOT',
|
|
936
|
-
costs: [
|
|
937
|
-
{
|
|
938
|
-
type: 'ITEM',
|
|
939
|
-
item_id: 'FLAWLESS_PERIDOT_GEM',
|
|
940
|
-
amount: 1,
|
|
941
|
-
},
|
|
942
|
-
{
|
|
943
|
-
type: 'COINS',
|
|
944
|
-
coins: 250000,
|
|
945
|
-
},
|
|
946
|
-
],
|
|
947
|
-
},
|
|
948
|
-
],
|
|
949
|
-
name: 'Pythagorean Potato Hoe',
|
|
519
|
+
gemSlots: t3Gems,
|
|
520
|
+
name: 'Pythagorean Potato Hoe Mk. III',
|
|
950
521
|
wiki: 'https://wiki.hypixel.net/Pythagorean_Potato_Hoe#Rare_',
|
|
951
|
-
stats: t3hoeStats,
|
|
952
522
|
},
|
|
953
523
|
THEORETICAL_HOE_CANE_1: {
|
|
954
524
|
skyblockId: 'THEORETICAL_HOE_CANE_1',
|
|
955
|
-
|
|
956
|
-
maxRarity: Rarity.
|
|
525
|
+
crops: [Crop.SugarCane],
|
|
526
|
+
maxRarity: Rarity.Rare,
|
|
957
527
|
type: FarmingToolType.MathematicalHoe,
|
|
958
528
|
upgrade: {
|
|
959
529
|
id: 'THEORETICAL_HOE_CANE_2',
|
|
@@ -965,30 +535,14 @@ export const FARMING_TOOLS = {
|
|
|
965
535
|
},
|
|
966
536
|
},
|
|
967
537
|
},
|
|
968
|
-
gemSlots:
|
|
969
|
-
|
|
970
|
-
slot_type: 'PERIDOT',
|
|
971
|
-
costs: [
|
|
972
|
-
{
|
|
973
|
-
type: 'ITEM',
|
|
974
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
975
|
-
amount: 20,
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
type: 'COINS',
|
|
979
|
-
coins: 50000,
|
|
980
|
-
},
|
|
981
|
-
],
|
|
982
|
-
},
|
|
983
|
-
],
|
|
984
|
-
name: 'Turing Sugar Cane Hoe',
|
|
538
|
+
gemSlots: t1Gems,
|
|
539
|
+
name: 'Turing Sugar Cane Hoe Mk. I',
|
|
985
540
|
wiki: 'https://wiki.hypixel.net/Turing_Sugar_Cane_Hoe#Common_',
|
|
986
|
-
stats: t1hoeStats,
|
|
987
541
|
},
|
|
988
542
|
THEORETICAL_HOE_CANE_2: {
|
|
989
543
|
skyblockId: 'THEORETICAL_HOE_CANE_2',
|
|
990
|
-
|
|
991
|
-
maxRarity: Rarity.
|
|
544
|
+
crops: [Crop.SugarCane],
|
|
545
|
+
maxRarity: Rarity.Epic,
|
|
992
546
|
type: FarmingToolType.MathematicalHoe,
|
|
993
547
|
upgrade: {
|
|
994
548
|
id: 'THEORETICAL_HOE_CANE_3',
|
|
@@ -1000,97 +554,23 @@ export const FARMING_TOOLS = {
|
|
|
1000
554
|
},
|
|
1001
555
|
},
|
|
1002
556
|
},
|
|
1003
|
-
gemSlots:
|
|
1004
|
-
|
|
1005
|
-
slot_type: 'PERIDOT',
|
|
1006
|
-
costs: [
|
|
1007
|
-
{
|
|
1008
|
-
type: 'ITEM',
|
|
1009
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
1010
|
-
amount: 20,
|
|
1011
|
-
},
|
|
1012
|
-
{
|
|
1013
|
-
type: 'COINS',
|
|
1014
|
-
coins: 50000,
|
|
1015
|
-
},
|
|
1016
|
-
],
|
|
1017
|
-
},
|
|
1018
|
-
{
|
|
1019
|
-
slot_type: 'PERIDOT',
|
|
1020
|
-
costs: [
|
|
1021
|
-
{
|
|
1022
|
-
type: 'ITEM',
|
|
1023
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
1024
|
-
amount: 40,
|
|
1025
|
-
},
|
|
1026
|
-
{
|
|
1027
|
-
type: 'COINS',
|
|
1028
|
-
coins: 100000,
|
|
1029
|
-
},
|
|
1030
|
-
],
|
|
1031
|
-
},
|
|
1032
|
-
],
|
|
1033
|
-
name: 'Turing Sugar Cane Hoe',
|
|
557
|
+
gemSlots: t2Gems,
|
|
558
|
+
name: 'Turing Sugar Cane Hoe Mk. II',
|
|
1034
559
|
wiki: 'https://wiki.hypixel.net/Turing_Sugar_Cane_Hoe#Uncommon_',
|
|
1035
|
-
stats: t2hoeStats,
|
|
1036
560
|
},
|
|
1037
561
|
THEORETICAL_HOE_CANE_3: {
|
|
1038
562
|
skyblockId: 'THEORETICAL_HOE_CANE_3',
|
|
1039
|
-
|
|
1040
|
-
maxRarity: Rarity.
|
|
563
|
+
crops: [Crop.SugarCane],
|
|
564
|
+
maxRarity: Rarity.Legendary,
|
|
1041
565
|
type: FarmingToolType.MathematicalHoe,
|
|
1042
|
-
gemSlots:
|
|
1043
|
-
|
|
1044
|
-
slot_type: 'PERIDOT',
|
|
1045
|
-
costs: [
|
|
1046
|
-
{
|
|
1047
|
-
type: 'ITEM',
|
|
1048
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
1049
|
-
amount: 20,
|
|
1050
|
-
},
|
|
1051
|
-
{
|
|
1052
|
-
type: 'COINS',
|
|
1053
|
-
coins: 50000,
|
|
1054
|
-
},
|
|
1055
|
-
],
|
|
1056
|
-
},
|
|
1057
|
-
{
|
|
1058
|
-
slot_type: 'PERIDOT',
|
|
1059
|
-
costs: [
|
|
1060
|
-
{
|
|
1061
|
-
type: 'ITEM',
|
|
1062
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
1063
|
-
amount: 40,
|
|
1064
|
-
},
|
|
1065
|
-
{
|
|
1066
|
-
type: 'COINS',
|
|
1067
|
-
coins: 100000,
|
|
1068
|
-
},
|
|
1069
|
-
],
|
|
1070
|
-
},
|
|
1071
|
-
{
|
|
1072
|
-
slot_type: 'PERIDOT',
|
|
1073
|
-
costs: [
|
|
1074
|
-
{
|
|
1075
|
-
type: 'ITEM',
|
|
1076
|
-
item_id: 'FLAWLESS_PERIDOT_GEM',
|
|
1077
|
-
amount: 1,
|
|
1078
|
-
},
|
|
1079
|
-
{
|
|
1080
|
-
type: 'COINS',
|
|
1081
|
-
coins: 250000,
|
|
1082
|
-
},
|
|
1083
|
-
],
|
|
1084
|
-
},
|
|
1085
|
-
],
|
|
1086
|
-
name: 'Turing Sugar Cane Hoe',
|
|
566
|
+
gemSlots: t3Gems,
|
|
567
|
+
name: 'Turing Sugar Cane Hoe Mk. III',
|
|
1087
568
|
wiki: 'https://wiki.hypixel.net/Turing_Sugar_Cane_Hoe#Rare_',
|
|
1088
|
-
stats: t3hoeStats,
|
|
1089
569
|
},
|
|
1090
570
|
THEORETICAL_HOE_WHEAT_1: {
|
|
1091
571
|
skyblockId: 'THEORETICAL_HOE_WHEAT_1',
|
|
1092
|
-
|
|
1093
|
-
maxRarity: Rarity.
|
|
572
|
+
crops: [Crop.Wheat],
|
|
573
|
+
maxRarity: Rarity.Rare,
|
|
1094
574
|
type: FarmingToolType.MathematicalHoe,
|
|
1095
575
|
upgrade: {
|
|
1096
576
|
id: 'THEORETICAL_HOE_WHEAT_2',
|
|
@@ -1102,30 +582,14 @@ export const FARMING_TOOLS = {
|
|
|
1102
582
|
},
|
|
1103
583
|
},
|
|
1104
584
|
},
|
|
1105
|
-
gemSlots:
|
|
1106
|
-
|
|
1107
|
-
slot_type: 'PERIDOT',
|
|
1108
|
-
costs: [
|
|
1109
|
-
{
|
|
1110
|
-
type: 'ITEM',
|
|
1111
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
1112
|
-
amount: 20,
|
|
1113
|
-
},
|
|
1114
|
-
{
|
|
1115
|
-
type: 'COINS',
|
|
1116
|
-
coins: 50000,
|
|
1117
|
-
},
|
|
1118
|
-
],
|
|
1119
|
-
},
|
|
1120
|
-
],
|
|
1121
|
-
name: "Euclid's Wheat Hoe",
|
|
585
|
+
gemSlots: t1Gems,
|
|
586
|
+
name: "Euclid's Wheat Hoe Mk. I",
|
|
1122
587
|
wiki: 'https://wiki.hypixel.net/Euclid%27s_Wheat_Hoe#Common_',
|
|
1123
|
-
stats: t1hoeStats,
|
|
1124
588
|
},
|
|
1125
589
|
THEORETICAL_HOE_WHEAT_2: {
|
|
1126
590
|
skyblockId: 'THEORETICAL_HOE_WHEAT_2',
|
|
1127
|
-
|
|
1128
|
-
maxRarity: Rarity.
|
|
591
|
+
crops: [Crop.Wheat],
|
|
592
|
+
maxRarity: Rarity.Epic,
|
|
1129
593
|
type: FarmingToolType.MathematicalHoe,
|
|
1130
594
|
upgrade: {
|
|
1131
595
|
id: 'THEORETICAL_HOE_WHEAT_3',
|
|
@@ -1137,92 +601,114 @@ export const FARMING_TOOLS = {
|
|
|
1137
601
|
},
|
|
1138
602
|
},
|
|
1139
603
|
},
|
|
1140
|
-
gemSlots:
|
|
1141
|
-
|
|
1142
|
-
slot_type: 'PERIDOT',
|
|
1143
|
-
costs: [
|
|
1144
|
-
{
|
|
1145
|
-
type: 'ITEM',
|
|
1146
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
1147
|
-
amount: 20,
|
|
1148
|
-
},
|
|
1149
|
-
{
|
|
1150
|
-
type: 'COINS',
|
|
1151
|
-
coins: 50000,
|
|
1152
|
-
},
|
|
1153
|
-
],
|
|
1154
|
-
},
|
|
1155
|
-
{
|
|
1156
|
-
slot_type: 'PERIDOT',
|
|
1157
|
-
costs: [
|
|
1158
|
-
{
|
|
1159
|
-
type: 'ITEM',
|
|
1160
|
-
item_id: 'FINE_PERIDOT_GEM',
|
|
1161
|
-
amount: 40,
|
|
1162
|
-
},
|
|
1163
|
-
{
|
|
1164
|
-
type: 'COINS',
|
|
1165
|
-
coins: 100000,
|
|
1166
|
-
},
|
|
1167
|
-
],
|
|
1168
|
-
},
|
|
1169
|
-
],
|
|
1170
|
-
name: "Euclid's Wheat Hoe",
|
|
604
|
+
gemSlots: t2Gems,
|
|
605
|
+
name: "Euclid's Wheat Hoe Mk. II",
|
|
1171
606
|
wiki: 'https://wiki.hypixel.net/Euclid%27s_Wheat_Hoe#Uncommon_',
|
|
1172
|
-
stats: t2hoeStats,
|
|
1173
607
|
},
|
|
1174
608
|
THEORETICAL_HOE_WHEAT_3: {
|
|
1175
609
|
skyblockId: 'THEORETICAL_HOE_WHEAT_3',
|
|
1176
|
-
|
|
1177
|
-
maxRarity: Rarity.
|
|
610
|
+
crops: [Crop.Wheat],
|
|
611
|
+
maxRarity: Rarity.Legendary,
|
|
1178
612
|
type: FarmingToolType.MathematicalHoe,
|
|
1179
|
-
gemSlots:
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
613
|
+
gemSlots: t3Gems,
|
|
614
|
+
name: "Euclid's Wheat Hoe Mk. III",
|
|
615
|
+
wiki: 'https://wiki.hypixel.net/Euclid%27s_Wheat_Hoe#Rare_',
|
|
616
|
+
},
|
|
617
|
+
THEORETICAL_HOE_SUNFLOWER_1: {
|
|
618
|
+
skyblockId: 'THEORETICAL_HOE_SUNFLOWER_1',
|
|
619
|
+
crops: [Crop.Sunflower, Crop.Moonflower],
|
|
620
|
+
maxRarity: Rarity.Rare,
|
|
621
|
+
type: FarmingToolType.MathematicalHoe,
|
|
622
|
+
upgrade: {
|
|
623
|
+
id: 'THEORETICAL_HOE_SUNFLOWER_2',
|
|
624
|
+
reason: UpgradeReason.NextTier,
|
|
625
|
+
cost: {
|
|
626
|
+
items: {
|
|
627
|
+
JACOBS_TICKET: 64,
|
|
628
|
+
COMPACTED_SUNFLOWER: 20,
|
|
629
|
+
COMPACTED_MOONFLOWER: 20,
|
|
630
|
+
},
|
|
1193
631
|
},
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
632
|
+
},
|
|
633
|
+
gemSlots: t1Gems,
|
|
634
|
+
name: 'Eclipse Hoe Mk. I',
|
|
635
|
+
wiki: 'https://wiki.hypixel.net/Eclipse_Hoe#Common_',
|
|
636
|
+
},
|
|
637
|
+
THEORETICAL_HOE_SUNFLOWER_2: {
|
|
638
|
+
skyblockId: 'THEORETICAL_HOE_SUNFLOWER_2',
|
|
639
|
+
crops: [Crop.Sunflower, Crop.Moonflower],
|
|
640
|
+
maxRarity: Rarity.Epic,
|
|
641
|
+
type: FarmingToolType.MathematicalHoe,
|
|
642
|
+
upgrade: {
|
|
643
|
+
id: 'THEORETICAL_HOE_SUNFLOWER_3',
|
|
644
|
+
reason: UpgradeReason.NextTier,
|
|
645
|
+
cost: {
|
|
646
|
+
items: {
|
|
647
|
+
JACOBS_TICKET: 256,
|
|
648
|
+
COMPACTED_SUNFLOWER: 80,
|
|
649
|
+
COMPACTED_MOONFLOWER: 80,
|
|
650
|
+
},
|
|
1207
651
|
},
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
652
|
+
},
|
|
653
|
+
gemSlots: t2Gems,
|
|
654
|
+
name: 'Eclipse Hoe Mk. II',
|
|
655
|
+
wiki: 'https://wiki.hypixel.net/Eclipse_Hoe#Uncommon_',
|
|
656
|
+
},
|
|
657
|
+
THEORETICAL_HOE_SUNFLOWER_3: {
|
|
658
|
+
skyblockId: 'THEORETICAL_HOE_SUNFLOWER_3',
|
|
659
|
+
crops: [Crop.Sunflower, Crop.Moonflower],
|
|
660
|
+
maxRarity: Rarity.Legendary,
|
|
661
|
+
type: FarmingToolType.MathematicalHoe,
|
|
662
|
+
gemSlots: t3Gems,
|
|
663
|
+
name: 'Eclipse Hoe Mk. III',
|
|
664
|
+
wiki: 'https://wiki.hypixel.net/Eclipse_Hoe#Rare_',
|
|
665
|
+
},
|
|
666
|
+
THEORETICAL_HOE_WILD_ROSE_1: {
|
|
667
|
+
skyblockId: 'THEORETICAL_HOE_WILD_ROSE_1',
|
|
668
|
+
crops: [Crop.WildRose],
|
|
669
|
+
maxRarity: Rarity.Rare,
|
|
670
|
+
type: FarmingToolType.MathematicalHoe,
|
|
671
|
+
upgrade: {
|
|
672
|
+
id: 'THEORETICAL_HOE_WILD_ROSE_2',
|
|
673
|
+
reason: UpgradeReason.NextTier,
|
|
674
|
+
cost: {
|
|
675
|
+
items: {
|
|
676
|
+
JACOBS_TICKET: 64,
|
|
677
|
+
COMPACTED_WILD_ROSE: 40,
|
|
678
|
+
},
|
|
1221
679
|
},
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
680
|
+
},
|
|
681
|
+
gemSlots: t1Gems,
|
|
682
|
+
name: 'Wild Rose Hoe Mk. I',
|
|
683
|
+
wiki: 'https://wiki.hypixel.net/Wild_Rose_Hoe#Common_',
|
|
684
|
+
},
|
|
685
|
+
THEORETICAL_HOE_WILD_ROSE_2: {
|
|
686
|
+
skyblockId: 'THEORETICAL_HOE_WILD_ROSE_2',
|
|
687
|
+
crops: [Crop.WildRose],
|
|
688
|
+
maxRarity: Rarity.Epic,
|
|
689
|
+
type: FarmingToolType.MathematicalHoe,
|
|
690
|
+
upgrade: {
|
|
691
|
+
id: 'THEORETICAL_HOE_WILD_ROSE_3',
|
|
692
|
+
reason: UpgradeReason.NextTier,
|
|
693
|
+
cost: {
|
|
694
|
+
items: {
|
|
695
|
+
JACOBS_TICKET: 256,
|
|
696
|
+
COMPACTED_WILD_ROSE: 160,
|
|
697
|
+
},
|
|
698
|
+
},
|
|
699
|
+
},
|
|
700
|
+
gemSlots: t2Gems,
|
|
701
|
+
name: 'Wild Rose Hoe Mk. II',
|
|
702
|
+
wiki: 'https://wiki.hypixel.net/Wild_Rose_Hoe#Uncommon_',
|
|
703
|
+
},
|
|
704
|
+
THEORETICAL_HOE_WILD_ROSE_3: {
|
|
705
|
+
skyblockId: 'THEORETICAL_HOE_WILD_ROSE_3',
|
|
706
|
+
crops: [Crop.WildRose],
|
|
707
|
+
maxRarity: Rarity.Legendary,
|
|
708
|
+
type: FarmingToolType.MathematicalHoe,
|
|
709
|
+
gemSlots: t3Gems,
|
|
710
|
+
name: 'Wild Rose Hoe Mk. III',
|
|
711
|
+
wiki: 'https://wiki.hypixel.net/Wild_Rose_Hoe#Rare_',
|
|
1226
712
|
},
|
|
1227
713
|
HOE_OF_NO_TILLING: {
|
|
1228
714
|
skyblockId: 'HOE_OF_NO_TILLING',
|
|
@@ -1233,9 +719,9 @@ export const FARMING_TOOLS = {
|
|
|
1233
719
|
},
|
|
1234
720
|
};
|
|
1235
721
|
export const BEST_FARMING_TOOLS = {
|
|
1236
|
-
[Crop.Cactus]: FARMING_TOOLS.CACTUS_KNIFE,
|
|
1237
|
-
[Crop.CocoaBeans]: FARMING_TOOLS.COCO_CHOPPER,
|
|
1238
|
-
[Crop.Mushroom]: FARMING_TOOLS.FUNGI_CUTTER,
|
|
722
|
+
[Crop.Cactus]: FARMING_TOOLS.CACTUS_KNIFE_3 ?? FARMING_TOOLS.CACTUS_KNIFE,
|
|
723
|
+
[Crop.CocoaBeans]: FARMING_TOOLS.COCO_CHOPPER_3 ?? FARMING_TOOLS.COCO_CHOPPER,
|
|
724
|
+
[Crop.Mushroom]: FARMING_TOOLS.FUNGI_CUTTER_3 ?? FARMING_TOOLS.FUNGI_CUTTER,
|
|
1239
725
|
[Crop.Melon]: FARMING_TOOLS.MELON_DICER_3,
|
|
1240
726
|
[Crop.Pumpkin]: FARMING_TOOLS.PUMPKIN_DICER_3,
|
|
1241
727
|
[Crop.Carrot]: FARMING_TOOLS.THEORETICAL_HOE_CARROT_3,
|