farming-weight 0.8.8 → 0.9.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.d.ts +2 -0
- package/dist/constants/crops.js +25 -0
- package/dist/constants/crops.js.map +1 -1
- package/dist/constants/enchants.d.ts +3 -0
- package/dist/constants/enchants.js +18 -0
- package/dist/constants/enchants.js.map +1 -1
- package/dist/constants/plots.d.ts +130 -0
- package/dist/constants/plots.js +157 -0
- package/dist/constants/plots.js.map +1 -0
- package/dist/constants/reforges.d.ts +1 -1
- package/dist/constants/reforges.js +105 -0
- package/dist/constants/reforges.js.map +1 -1
- package/dist/constants/specific.js +228 -1
- package/dist/constants/specific.js.map +1 -1
- package/dist/constants/upgrades.d.ts +31 -5
- package/dist/constants/upgrades.js +11 -1
- package/dist/constants/upgrades.js.map +1 -1
- package/dist/fortune/farmingarmor.d.ts +3 -2
- package/dist/fortune/farmingarmor.js +26 -9
- package/dist/fortune/farmingarmor.js.map +1 -1
- package/dist/fortune/farmingequipment.js +3 -3
- package/dist/fortune/farmingequipment.js.map +1 -1
- package/dist/fortune/farmingtool.d.ts +2 -1
- package/dist/fortune/farmingtool.js +16 -1
- package/dist/fortune/farmingtool.js.map +1 -1
- package/dist/fortune/item.d.ts +1 -1
- package/dist/fortune/upgradeable.d.ts +13 -3
- package/dist/fortune/upgradeable.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/items/accessories.js +29 -2
- package/dist/items/accessories.js.map +1 -1
- package/dist/items/armor.d.ts +1 -1
- package/dist/items/armor.js +510 -71
- package/dist/items/armor.js.map +1 -1
- package/dist/items/equipment.d.ts +1 -1
- package/dist/items/equipment.js +1 -1
- package/dist/items/equipment.js.map +1 -1
- package/dist/items/tools.js +813 -85
- package/dist/items/tools.js.map +1 -1
- package/dist/player/player.d.ts +5 -2
- package/dist/player/player.js +52 -2
- package/dist/player/player.js.map +1 -1
- package/dist/player/playeroptions.d.ts +1 -0
- package/dist/player/playeroptions.js.map +1 -1
- package/dist/upgrades/sources/accessorysources.js +10 -8
- package/dist/upgrades/sources/accessorysources.js.map +1 -1
- package/dist/upgrades/sources/armorsetsources.js +42 -10
- package/dist/upgrades/sources/armorsetsources.js.map +1 -1
- package/dist/upgrades/sources/cropsources.js +46 -0
- package/dist/upgrades/sources/cropsources.js.map +1 -1
- package/dist/upgrades/sources/gearsources.js +12 -8
- package/dist/upgrades/sources/gearsources.js.map +1 -1
- package/dist/upgrades/sources/generalsources.js +131 -1
- package/dist/upgrades/sources/generalsources.js.map +1 -1
- package/dist/upgrades/sources/toolsources.d.ts +2 -1
- package/dist/upgrades/sources/toolsources.js +88 -13
- package/dist/upgrades/sources/toolsources.js.map +1 -1
- package/dist/upgrades/upgrades.d.ts +11 -1
- package/dist/upgrades/upgrades.js +293 -43
- package/dist/upgrades/upgrades.js.map +1 -1
- package/dist/util/garden.d.ts +9 -0
- package/dist/util/garden.js +18 -0
- package/dist/util/garden.js.map +1 -1
- package/dist/util/gems.d.ts +4 -4
- package/dist/util/gems.js +6 -0
- package/dist/util/gems.js.map +1 -1
- package/package.json +3 -2
package/dist/items/armor.js
CHANGED
|
@@ -56,7 +56,7 @@ export const GEAR_SLOTS = {
|
|
|
56
56
|
startingItem: 'LOTUS_BRACELET',
|
|
57
57
|
},
|
|
58
58
|
};
|
|
59
|
-
export const
|
|
59
|
+
export const FARMING_ARMOR_INFO = {
|
|
60
60
|
FARMER_BOOTS: {
|
|
61
61
|
skyblockId: 'FARMER_BOOTS',
|
|
62
62
|
name: 'Farmer Boots',
|
|
@@ -64,12 +64,23 @@ export const ARMOR_INFO = {
|
|
|
64
64
|
upgrade: {
|
|
65
65
|
id: 'RANCHERS_BOOTS',
|
|
66
66
|
reason: UpgradeReason.NextTier,
|
|
67
|
+
cost: {
|
|
68
|
+
items: {
|
|
69
|
+
ENCHANTED_PUMPKIN: 256,
|
|
70
|
+
},
|
|
71
|
+
},
|
|
67
72
|
},
|
|
68
73
|
maxRarity: Rarity.Rare,
|
|
69
74
|
slot: GearSlot.Boots,
|
|
70
|
-
gemSlots:
|
|
71
|
-
|
|
72
|
-
|
|
75
|
+
gemSlots: [
|
|
76
|
+
{
|
|
77
|
+
slot_type: 'PERIDOT',
|
|
78
|
+
costs: [
|
|
79
|
+
{ type: 'ITEM', item_id: 'FINE_PERIDOT_GEM', amount: 20 },
|
|
80
|
+
{ type: 'COINS', coins: 50000 },
|
|
81
|
+
],
|
|
82
|
+
},
|
|
83
|
+
],
|
|
73
84
|
skillReq: {
|
|
74
85
|
[Skill.Farming]: 18,
|
|
75
86
|
},
|
|
@@ -88,13 +99,40 @@ export const ARMOR_INFO = {
|
|
|
88
99
|
id: 'FERMENTO_BOOTS',
|
|
89
100
|
reason: UpgradeReason.Situational,
|
|
90
101
|
why: 'Fermento Boots provide more farming fortune, with the tradeoff of not being able to control your speed.',
|
|
91
|
-
|
|
102
|
+
preferred: true,
|
|
92
103
|
},
|
|
93
104
|
maxRarity: Rarity.Legendary,
|
|
94
105
|
slot: GearSlot.Boots,
|
|
95
|
-
gemSlots:
|
|
96
|
-
|
|
97
|
-
|
|
106
|
+
gemSlots: [
|
|
107
|
+
{
|
|
108
|
+
slot_type: 'PERIDOT',
|
|
109
|
+
costs: [
|
|
110
|
+
{
|
|
111
|
+
type: 'ITEM',
|
|
112
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
113
|
+
amount: 20,
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
type: 'COINS',
|
|
117
|
+
coins: 50000,
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
slot_type: 'PERIDOT',
|
|
123
|
+
costs: [
|
|
124
|
+
{
|
|
125
|
+
type: 'ITEM',
|
|
126
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
127
|
+
amount: 40,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'COINS',
|
|
131
|
+
coins: 100000,
|
|
132
|
+
},
|
|
133
|
+
],
|
|
134
|
+
},
|
|
135
|
+
],
|
|
98
136
|
skillReq: {
|
|
99
137
|
[Skill.Farming]: 21,
|
|
100
138
|
},
|
|
@@ -115,9 +153,26 @@ export const ARMOR_INFO = {
|
|
|
115
153
|
},
|
|
116
154
|
maxRarity: Rarity.Rare,
|
|
117
155
|
slot: GearSlot.Helmet,
|
|
118
|
-
gemSlots:
|
|
119
|
-
|
|
120
|
-
|
|
156
|
+
gemSlots: [
|
|
157
|
+
{
|
|
158
|
+
slot_type: 'PERIDOT',
|
|
159
|
+
costs: [],
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
slot_type: 'PERIDOT',
|
|
163
|
+
costs: [
|
|
164
|
+
{
|
|
165
|
+
type: 'ITEM',
|
|
166
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
167
|
+
amount: 20,
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
type: 'COINS',
|
|
171
|
+
coins: 50000,
|
|
172
|
+
},
|
|
173
|
+
],
|
|
174
|
+
},
|
|
175
|
+
],
|
|
121
176
|
skillReq: {
|
|
122
177
|
[Skill.Farming]: 15,
|
|
123
178
|
},
|
|
@@ -139,9 +194,26 @@ export const ARMOR_INFO = {
|
|
|
139
194
|
},
|
|
140
195
|
family: 'FARM_ARMOR',
|
|
141
196
|
slot: GearSlot.Helmet,
|
|
142
|
-
gemSlots:
|
|
143
|
-
|
|
144
|
-
|
|
197
|
+
gemSlots: [
|
|
198
|
+
{
|
|
199
|
+
slot_type: 'PERIDOT',
|
|
200
|
+
costs: [],
|
|
201
|
+
},
|
|
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
|
+
],
|
|
145
217
|
maxRarity: Rarity.Epic,
|
|
146
218
|
baseStats: {
|
|
147
219
|
[Stat.FarmingFortune]: 10,
|
|
@@ -161,9 +233,26 @@ export const ARMOR_INFO = {
|
|
|
161
233
|
family: 'FARM_ARMOR',
|
|
162
234
|
slot: GearSlot.Chestplate,
|
|
163
235
|
maxRarity: Rarity.Epic,
|
|
164
|
-
gemSlots:
|
|
165
|
-
|
|
166
|
-
|
|
236
|
+
gemSlots: [
|
|
237
|
+
{
|
|
238
|
+
slot_type: 'PERIDOT',
|
|
239
|
+
costs: [],
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
slot_type: 'PERIDOT',
|
|
243
|
+
costs: [
|
|
244
|
+
{
|
|
245
|
+
type: 'ITEM',
|
|
246
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
247
|
+
amount: 20,
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
type: 'COINS',
|
|
251
|
+
coins: 50000,
|
|
252
|
+
},
|
|
253
|
+
],
|
|
254
|
+
},
|
|
255
|
+
],
|
|
167
256
|
baseStats: {
|
|
168
257
|
[Stat.FarmingFortune]: 10,
|
|
169
258
|
},
|
|
@@ -182,9 +271,26 @@ export const ARMOR_INFO = {
|
|
|
182
271
|
family: 'FARM_ARMOR',
|
|
183
272
|
slot: GearSlot.Leggings,
|
|
184
273
|
maxRarity: Rarity.Epic,
|
|
185
|
-
gemSlots:
|
|
186
|
-
|
|
187
|
-
|
|
274
|
+
gemSlots: [
|
|
275
|
+
{
|
|
276
|
+
slot_type: 'PERIDOT',
|
|
277
|
+
costs: [],
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
slot_type: 'PERIDOT',
|
|
281
|
+
costs: [
|
|
282
|
+
{
|
|
283
|
+
type: 'ITEM',
|
|
284
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
285
|
+
amount: 20,
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
type: 'COINS',
|
|
289
|
+
coins: 50000,
|
|
290
|
+
},
|
|
291
|
+
],
|
|
292
|
+
},
|
|
293
|
+
],
|
|
188
294
|
baseStats: {
|
|
189
295
|
[Stat.FarmingFortune]: 10,
|
|
190
296
|
},
|
|
@@ -203,9 +309,26 @@ export const ARMOR_INFO = {
|
|
|
203
309
|
family: 'FARM_ARMOR',
|
|
204
310
|
slot: GearSlot.Boots,
|
|
205
311
|
maxRarity: Rarity.Epic,
|
|
206
|
-
gemSlots:
|
|
207
|
-
|
|
208
|
-
|
|
312
|
+
gemSlots: [
|
|
313
|
+
{
|
|
314
|
+
slot_type: 'PERIDOT',
|
|
315
|
+
costs: [],
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
slot_type: 'PERIDOT',
|
|
319
|
+
costs: [
|
|
320
|
+
{
|
|
321
|
+
type: 'ITEM',
|
|
322
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
323
|
+
amount: 20,
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
type: 'COINS',
|
|
327
|
+
coins: 50000,
|
|
328
|
+
},
|
|
329
|
+
],
|
|
330
|
+
},
|
|
331
|
+
],
|
|
209
332
|
baseStats: {
|
|
210
333
|
[Stat.FarmingFortune]: 10,
|
|
211
334
|
},
|
|
@@ -224,9 +347,12 @@ export const ARMOR_INFO = {
|
|
|
224
347
|
family: 'RABBIT',
|
|
225
348
|
slot: GearSlot.Helmet,
|
|
226
349
|
maxRarity: Rarity.Uncommon,
|
|
227
|
-
gemSlots:
|
|
228
|
-
|
|
229
|
-
|
|
350
|
+
gemSlots: [
|
|
351
|
+
{
|
|
352
|
+
slot_type: 'PERIDOT',
|
|
353
|
+
costs: [],
|
|
354
|
+
},
|
|
355
|
+
],
|
|
230
356
|
baseStats: {
|
|
231
357
|
[Stat.FarmingFortune]: 15,
|
|
232
358
|
},
|
|
@@ -244,9 +370,12 @@ export const ARMOR_INFO = {
|
|
|
244
370
|
},
|
|
245
371
|
family: 'RABBIT',
|
|
246
372
|
slot: GearSlot.Chestplate,
|
|
247
|
-
gemSlots:
|
|
248
|
-
|
|
249
|
-
|
|
373
|
+
gemSlots: [
|
|
374
|
+
{
|
|
375
|
+
slot_type: 'PERIDOT',
|
|
376
|
+
costs: [],
|
|
377
|
+
},
|
|
378
|
+
],
|
|
250
379
|
maxRarity: Rarity.Uncommon,
|
|
251
380
|
baseStats: {
|
|
252
381
|
[Stat.FarmingFortune]: 15,
|
|
@@ -266,9 +395,12 @@ export const ARMOR_INFO = {
|
|
|
266
395
|
family: 'RABBIT',
|
|
267
396
|
slot: GearSlot.Leggings,
|
|
268
397
|
maxRarity: Rarity.Uncommon,
|
|
269
|
-
gemSlots:
|
|
270
|
-
|
|
271
|
-
|
|
398
|
+
gemSlots: [
|
|
399
|
+
{
|
|
400
|
+
slot_type: 'PERIDOT',
|
|
401
|
+
costs: [],
|
|
402
|
+
},
|
|
403
|
+
],
|
|
272
404
|
baseStats: {
|
|
273
405
|
[Stat.FarmingFortune]: 15,
|
|
274
406
|
},
|
|
@@ -287,9 +419,12 @@ export const ARMOR_INFO = {
|
|
|
287
419
|
family: 'RABBIT',
|
|
288
420
|
slot: GearSlot.Boots,
|
|
289
421
|
maxRarity: Rarity.Uncommon,
|
|
290
|
-
gemSlots:
|
|
291
|
-
|
|
292
|
-
|
|
422
|
+
gemSlots: [
|
|
423
|
+
{
|
|
424
|
+
slot_type: 'PERIDOT',
|
|
425
|
+
costs: [],
|
|
426
|
+
},
|
|
427
|
+
],
|
|
293
428
|
baseStats: {
|
|
294
429
|
[Stat.FarmingFortune]: 15,
|
|
295
430
|
},
|
|
@@ -304,6 +439,13 @@ export const ARMOR_INFO = {
|
|
|
304
439
|
upgrade: {
|
|
305
440
|
id: 'CROPIE_HELMET',
|
|
306
441
|
reason: UpgradeReason.NextTier,
|
|
442
|
+
cost: {
|
|
443
|
+
items: {
|
|
444
|
+
ENCHANTED_HAY_BALE: 8,
|
|
445
|
+
BOX_OF_SEEDS: 6,
|
|
446
|
+
CROPIE: 20,
|
|
447
|
+
},
|
|
448
|
+
},
|
|
307
449
|
},
|
|
308
450
|
family: 'MELON',
|
|
309
451
|
special: [SpecialCrop.Cropie],
|
|
@@ -323,6 +465,14 @@ export const ARMOR_INFO = {
|
|
|
323
465
|
upgrade: {
|
|
324
466
|
id: 'CROPIE_CHESTPLATE',
|
|
325
467
|
reason: UpgradeReason.NextTier,
|
|
468
|
+
cost: {
|
|
469
|
+
items: {
|
|
470
|
+
ENCHANTED_HAY_BALE: 8,
|
|
471
|
+
BOX_OF_SEEDS: 6,
|
|
472
|
+
CROPIE: 20,
|
|
473
|
+
ENCHANTED_BAKED_POTATO: 45,
|
|
474
|
+
},
|
|
475
|
+
},
|
|
326
476
|
},
|
|
327
477
|
family: 'MELON',
|
|
328
478
|
special: [SpecialCrop.Cropie],
|
|
@@ -342,6 +492,14 @@ export const ARMOR_INFO = {
|
|
|
342
492
|
upgrade: {
|
|
343
493
|
id: 'CROPIE_LEGGINGS',
|
|
344
494
|
reason: UpgradeReason.NextTier,
|
|
495
|
+
cost: {
|
|
496
|
+
items: {
|
|
497
|
+
ENCHANTED_HAY_BALE: 8,
|
|
498
|
+
BOX_OF_SEEDS: 6,
|
|
499
|
+
CROPIE: 20,
|
|
500
|
+
ENCHANTED_GOLDEN_CARROT: 30,
|
|
501
|
+
},
|
|
502
|
+
},
|
|
345
503
|
},
|
|
346
504
|
family: 'MELON',
|
|
347
505
|
special: [SpecialCrop.Cropie],
|
|
@@ -361,6 +519,12 @@ export const ARMOR_INFO = {
|
|
|
361
519
|
upgrade: {
|
|
362
520
|
id: 'CROPIE_BOOTS',
|
|
363
521
|
reason: UpgradeReason.NextTier,
|
|
522
|
+
cost: {
|
|
523
|
+
items: {
|
|
524
|
+
ENCHANTED_HAY_BALE: 16,
|
|
525
|
+
CROPIE: 20,
|
|
526
|
+
},
|
|
527
|
+
},
|
|
364
528
|
},
|
|
365
529
|
family: 'MELON',
|
|
366
530
|
special: [SpecialCrop.Cropie],
|
|
@@ -380,14 +544,34 @@ export const ARMOR_INFO = {
|
|
|
380
544
|
upgrade: {
|
|
381
545
|
id: 'SQUASH_HELMET',
|
|
382
546
|
reason: UpgradeReason.NextTier,
|
|
547
|
+
cost: {
|
|
548
|
+
items: {
|
|
549
|
+
SQUASH: 20,
|
|
550
|
+
POLISHED_PUMPKIN: 8,
|
|
551
|
+
ENCHANTED_MELON_BLOCK: 48,
|
|
552
|
+
},
|
|
553
|
+
},
|
|
383
554
|
},
|
|
384
555
|
family: 'CROPIE',
|
|
385
556
|
special: [SpecialCrop.Squash],
|
|
386
557
|
slot: GearSlot.Helmet,
|
|
387
558
|
maxRarity: Rarity.Epic,
|
|
388
|
-
gemSlots:
|
|
389
|
-
|
|
390
|
-
|
|
559
|
+
gemSlots: [
|
|
560
|
+
{
|
|
561
|
+
slot_type: 'PERIDOT',
|
|
562
|
+
costs: [
|
|
563
|
+
{
|
|
564
|
+
type: 'ITEM',
|
|
565
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
566
|
+
amount: 20,
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
type: 'COINS',
|
|
570
|
+
coins: 50000,
|
|
571
|
+
},
|
|
572
|
+
],
|
|
573
|
+
},
|
|
574
|
+
],
|
|
391
575
|
baseStats: {
|
|
392
576
|
[Stat.FarmingFortune]: 20,
|
|
393
577
|
},
|
|
@@ -402,14 +586,35 @@ export const ARMOR_INFO = {
|
|
|
402
586
|
upgrade: {
|
|
403
587
|
id: 'SQUASH_CHESTPLATE',
|
|
404
588
|
reason: UpgradeReason.NextTier,
|
|
589
|
+
cost: {
|
|
590
|
+
items: {
|
|
591
|
+
SQUASH: 20,
|
|
592
|
+
POLISHED_PUMPKIN: 8,
|
|
593
|
+
ENCHANTED_MELON_BLOCK: 48,
|
|
594
|
+
ENCHANTED_COOKIE: 30,
|
|
595
|
+
},
|
|
596
|
+
},
|
|
405
597
|
},
|
|
406
598
|
family: 'CROPIE',
|
|
407
599
|
special: [SpecialCrop.Squash],
|
|
408
600
|
slot: GearSlot.Chestplate,
|
|
409
601
|
maxRarity: Rarity.Epic,
|
|
410
|
-
gemSlots:
|
|
411
|
-
|
|
412
|
-
|
|
602
|
+
gemSlots: [
|
|
603
|
+
{
|
|
604
|
+
slot_type: 'PERIDOT',
|
|
605
|
+
costs: [
|
|
606
|
+
{
|
|
607
|
+
type: 'ITEM',
|
|
608
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
609
|
+
amount: 20,
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
type: 'COINS',
|
|
613
|
+
coins: 50000,
|
|
614
|
+
},
|
|
615
|
+
],
|
|
616
|
+
},
|
|
617
|
+
],
|
|
413
618
|
baseStats: {
|
|
414
619
|
[Stat.FarmingFortune]: 25,
|
|
415
620
|
},
|
|
@@ -424,14 +629,35 @@ export const ARMOR_INFO = {
|
|
|
424
629
|
upgrade: {
|
|
425
630
|
id: 'SQUASH_LEGGINGS',
|
|
426
631
|
reason: UpgradeReason.NextTier,
|
|
632
|
+
cost: {
|
|
633
|
+
items: {
|
|
634
|
+
SQUASH: 20,
|
|
635
|
+
POLISHED_PUMPKIN: 8,
|
|
636
|
+
ENCHANTED_MELON_BLOCK: 48,
|
|
637
|
+
ENCHANTED_COOKIE: 20,
|
|
638
|
+
},
|
|
639
|
+
},
|
|
427
640
|
},
|
|
428
641
|
family: 'CROPIE',
|
|
429
642
|
special: [SpecialCrop.Squash],
|
|
430
643
|
slot: GearSlot.Leggings,
|
|
431
644
|
maxRarity: Rarity.Epic,
|
|
432
|
-
gemSlots:
|
|
433
|
-
|
|
434
|
-
|
|
645
|
+
gemSlots: [
|
|
646
|
+
{
|
|
647
|
+
slot_type: 'PERIDOT',
|
|
648
|
+
costs: [
|
|
649
|
+
{
|
|
650
|
+
type: 'ITEM',
|
|
651
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
652
|
+
amount: 20,
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
type: 'COINS',
|
|
656
|
+
coins: 50000,
|
|
657
|
+
},
|
|
658
|
+
],
|
|
659
|
+
},
|
|
660
|
+
],
|
|
435
661
|
baseStats: {
|
|
436
662
|
[Stat.FarmingFortune]: 25,
|
|
437
663
|
},
|
|
@@ -446,14 +672,33 @@ export const ARMOR_INFO = {
|
|
|
446
672
|
upgrade: {
|
|
447
673
|
id: 'SQUASH_BOOTS',
|
|
448
674
|
reason: UpgradeReason.NextTier,
|
|
675
|
+
cost: {
|
|
676
|
+
items: {
|
|
677
|
+
SQUASH: 20,
|
|
678
|
+
POLISHED_PUMPKIN: 12,
|
|
679
|
+
},
|
|
680
|
+
},
|
|
449
681
|
},
|
|
450
682
|
family: 'CROPIE',
|
|
451
683
|
special: [SpecialCrop.Squash],
|
|
452
684
|
slot: GearSlot.Boots,
|
|
453
685
|
maxRarity: Rarity.Epic,
|
|
454
|
-
gemSlots:
|
|
455
|
-
|
|
456
|
-
|
|
686
|
+
gemSlots: [
|
|
687
|
+
{
|
|
688
|
+
slot_type: 'PERIDOT',
|
|
689
|
+
costs: [
|
|
690
|
+
{
|
|
691
|
+
type: 'ITEM',
|
|
692
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
693
|
+
amount: 20,
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
type: 'COINS',
|
|
697
|
+
coins: 50000,
|
|
698
|
+
},
|
|
699
|
+
],
|
|
700
|
+
},
|
|
701
|
+
],
|
|
457
702
|
baseStats: {
|
|
458
703
|
[Stat.FarmingFortune]: 20,
|
|
459
704
|
},
|
|
@@ -468,14 +713,35 @@ export const ARMOR_INFO = {
|
|
|
468
713
|
upgrade: {
|
|
469
714
|
id: 'FERMENTO_HELMET',
|
|
470
715
|
reason: UpgradeReason.NextTier,
|
|
716
|
+
cost: {
|
|
717
|
+
items: {
|
|
718
|
+
CONDENSED_FERMENTO: 2,
|
|
719
|
+
ENCHANTED_SUGAR_CANE: 32,
|
|
720
|
+
ENCHANTED_HUGE_MUSHROOM_2: 32,
|
|
721
|
+
ENCHANTED_HUGE_MUSHROOM_1: 32,
|
|
722
|
+
},
|
|
723
|
+
},
|
|
471
724
|
},
|
|
472
725
|
family: 'SQUASH',
|
|
473
726
|
special: [SpecialCrop.Fermento],
|
|
474
727
|
slot: GearSlot.Helmet,
|
|
475
728
|
maxRarity: Rarity.Legendary,
|
|
476
|
-
gemSlots:
|
|
477
|
-
|
|
478
|
-
|
|
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
|
+
],
|
|
479
745
|
baseStats: {
|
|
480
746
|
[Stat.FarmingFortune]: 25,
|
|
481
747
|
},
|
|
@@ -490,14 +756,37 @@ export const ARMOR_INFO = {
|
|
|
490
756
|
upgrade: {
|
|
491
757
|
id: 'FERMENTO_CHESTPLATE',
|
|
492
758
|
reason: UpgradeReason.NextTier,
|
|
759
|
+
cost: {
|
|
760
|
+
items: {
|
|
761
|
+
CONDENSED_FERMENTO: 2,
|
|
762
|
+
ENCHANTED_SUGAR_CANE: 32,
|
|
763
|
+
ENCHANTED_HUGE_MUSHROOM_2: 32,
|
|
764
|
+
ENCHANTED_HUGE_MUSHROOM_1: 32,
|
|
765
|
+
MUTANT_NETHER_STALK: 30,
|
|
766
|
+
ENCHANTED_CACTUS: 25,
|
|
767
|
+
},
|
|
768
|
+
},
|
|
493
769
|
},
|
|
494
770
|
family: 'SQUASH',
|
|
495
771
|
special: [SpecialCrop.Fermento],
|
|
496
772
|
slot: GearSlot.Chestplate,
|
|
497
773
|
maxRarity: Rarity.Legendary,
|
|
498
|
-
gemSlots:
|
|
499
|
-
|
|
500
|
-
|
|
774
|
+
gemSlots: [
|
|
775
|
+
{
|
|
776
|
+
slot_type: 'PERIDOT',
|
|
777
|
+
costs: [
|
|
778
|
+
{
|
|
779
|
+
type: 'ITEM',
|
|
780
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
781
|
+
amount: 20,
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
type: 'COINS',
|
|
785
|
+
coins: 50000,
|
|
786
|
+
},
|
|
787
|
+
],
|
|
788
|
+
},
|
|
789
|
+
],
|
|
501
790
|
baseStats: {
|
|
502
791
|
[Stat.FarmingFortune]: 30,
|
|
503
792
|
},
|
|
@@ -512,14 +801,36 @@ export const ARMOR_INFO = {
|
|
|
512
801
|
upgrade: {
|
|
513
802
|
id: 'FERMENTO_LEGGINGS',
|
|
514
803
|
reason: UpgradeReason.NextTier,
|
|
804
|
+
cost: {
|
|
805
|
+
items: {
|
|
806
|
+
CONDENSED_FERMENTO: 2,
|
|
807
|
+
ENCHANTED_SUGAR_CANE: 32,
|
|
808
|
+
ENCHANTED_HUGE_MUSHROOM_2: 32,
|
|
809
|
+
ENCHANTED_HUGE_MUSHROOM_1: 32,
|
|
810
|
+
MUTANT_NETHER_STALK: 40,
|
|
811
|
+
},
|
|
812
|
+
},
|
|
515
813
|
},
|
|
516
814
|
family: 'SQUASH',
|
|
517
815
|
special: [SpecialCrop.Fermento],
|
|
518
816
|
slot: GearSlot.Leggings,
|
|
519
817
|
maxRarity: Rarity.Legendary,
|
|
520
|
-
gemSlots:
|
|
521
|
-
|
|
522
|
-
|
|
818
|
+
gemSlots: [
|
|
819
|
+
{
|
|
820
|
+
slot_type: 'PERIDOT',
|
|
821
|
+
costs: [
|
|
822
|
+
{
|
|
823
|
+
type: 'ITEM',
|
|
824
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
825
|
+
amount: 20,
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
type: 'COINS',
|
|
829
|
+
coins: 50000,
|
|
830
|
+
},
|
|
831
|
+
],
|
|
832
|
+
},
|
|
833
|
+
],
|
|
523
834
|
baseStats: {
|
|
524
835
|
[Stat.FarmingFortune]: 30,
|
|
525
836
|
},
|
|
@@ -534,14 +845,34 @@ export const ARMOR_INFO = {
|
|
|
534
845
|
upgrade: {
|
|
535
846
|
id: 'FERMENTO_BOOTS',
|
|
536
847
|
reason: UpgradeReason.NextTier,
|
|
848
|
+
cost: {
|
|
849
|
+
items: {
|
|
850
|
+
CONDENSED_FERMENTO: 2,
|
|
851
|
+
ENCHANTED_HUGE_MUSHROOM_2: 32,
|
|
852
|
+
ENCHANTED_HUGE_MUSHROOM_1: 32,
|
|
853
|
+
},
|
|
854
|
+
},
|
|
537
855
|
},
|
|
538
856
|
family: 'SQUASH',
|
|
539
857
|
special: [SpecialCrop.Fermento],
|
|
540
858
|
slot: GearSlot.Boots,
|
|
541
859
|
maxRarity: Rarity.Legendary,
|
|
542
|
-
gemSlots:
|
|
543
|
-
|
|
544
|
-
|
|
860
|
+
gemSlots: [
|
|
861
|
+
{
|
|
862
|
+
slot_type: 'PERIDOT',
|
|
863
|
+
costs: [
|
|
864
|
+
{
|
|
865
|
+
type: 'ITEM',
|
|
866
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
867
|
+
amount: 20,
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
type: 'COINS',
|
|
871
|
+
coins: 50000,
|
|
872
|
+
},
|
|
873
|
+
],
|
|
874
|
+
},
|
|
875
|
+
],
|
|
545
876
|
baseStats: {
|
|
546
877
|
[Stat.FarmingFortune]: 25,
|
|
547
878
|
},
|
|
@@ -557,9 +888,36 @@ export const ARMOR_INFO = {
|
|
|
557
888
|
special: [SpecialCrop.Cropie, SpecialCrop.Squash, SpecialCrop.Fermento],
|
|
558
889
|
slot: GearSlot.Helmet,
|
|
559
890
|
maxRarity: Rarity.Mythic,
|
|
560
|
-
gemSlots:
|
|
561
|
-
|
|
562
|
-
|
|
891
|
+
gemSlots: [
|
|
892
|
+
{
|
|
893
|
+
slot_type: 'PERIDOT',
|
|
894
|
+
costs: [
|
|
895
|
+
{
|
|
896
|
+
type: 'ITEM',
|
|
897
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
898
|
+
amount: 20,
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
type: 'COINS',
|
|
902
|
+
coins: 50000,
|
|
903
|
+
},
|
|
904
|
+
],
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
slot_type: 'PERIDOT',
|
|
908
|
+
costs: [
|
|
909
|
+
{
|
|
910
|
+
type: 'ITEM',
|
|
911
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
912
|
+
amount: 40,
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
type: 'COINS',
|
|
916
|
+
coins: 100000,
|
|
917
|
+
},
|
|
918
|
+
],
|
|
919
|
+
},
|
|
920
|
+
],
|
|
563
921
|
baseStats: {
|
|
564
922
|
[Stat.FarmingFortune]: 30,
|
|
565
923
|
},
|
|
@@ -575,9 +933,36 @@ export const ARMOR_INFO = {
|
|
|
575
933
|
special: [SpecialCrop.Cropie, SpecialCrop.Squash, SpecialCrop.Fermento],
|
|
576
934
|
slot: GearSlot.Chestplate,
|
|
577
935
|
maxRarity: Rarity.Mythic,
|
|
578
|
-
gemSlots:
|
|
579
|
-
|
|
580
|
-
|
|
936
|
+
gemSlots: [
|
|
937
|
+
{
|
|
938
|
+
slot_type: 'PERIDOT',
|
|
939
|
+
costs: [
|
|
940
|
+
{
|
|
941
|
+
type: 'ITEM',
|
|
942
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
943
|
+
amount: 20,
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
type: 'COINS',
|
|
947
|
+
coins: 50000,
|
|
948
|
+
},
|
|
949
|
+
],
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
slot_type: 'PERIDOT',
|
|
953
|
+
costs: [
|
|
954
|
+
{
|
|
955
|
+
type: 'ITEM',
|
|
956
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
957
|
+
amount: 40,
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
type: 'COINS',
|
|
961
|
+
coins: 100000,
|
|
962
|
+
},
|
|
963
|
+
],
|
|
964
|
+
},
|
|
965
|
+
],
|
|
581
966
|
baseStats: {
|
|
582
967
|
[Stat.FarmingFortune]: 35,
|
|
583
968
|
},
|
|
@@ -593,9 +978,36 @@ export const ARMOR_INFO = {
|
|
|
593
978
|
special: [SpecialCrop.Cropie, SpecialCrop.Squash, SpecialCrop.Fermento],
|
|
594
979
|
slot: GearSlot.Leggings,
|
|
595
980
|
maxRarity: Rarity.Mythic,
|
|
596
|
-
gemSlots:
|
|
597
|
-
|
|
598
|
-
|
|
981
|
+
gemSlots: [
|
|
982
|
+
{
|
|
983
|
+
slot_type: 'PERIDOT',
|
|
984
|
+
costs: [
|
|
985
|
+
{
|
|
986
|
+
type: 'ITEM',
|
|
987
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
988
|
+
amount: 20,
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
type: 'COINS',
|
|
992
|
+
coins: 50000,
|
|
993
|
+
},
|
|
994
|
+
],
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
slot_type: 'PERIDOT',
|
|
998
|
+
costs: [
|
|
999
|
+
{
|
|
1000
|
+
type: 'ITEM',
|
|
1001
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
1002
|
+
amount: 40,
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
type: 'COINS',
|
|
1006
|
+
coins: 100000,
|
|
1007
|
+
},
|
|
1008
|
+
],
|
|
1009
|
+
},
|
|
1010
|
+
],
|
|
599
1011
|
baseStats: {
|
|
600
1012
|
[Stat.FarmingFortune]: 35,
|
|
601
1013
|
},
|
|
@@ -616,9 +1028,36 @@ export const ARMOR_INFO = {
|
|
|
616
1028
|
special: [SpecialCrop.Cropie, SpecialCrop.Squash, SpecialCrop.Fermento],
|
|
617
1029
|
slot: GearSlot.Boots,
|
|
618
1030
|
maxRarity: Rarity.Mythic,
|
|
619
|
-
gemSlots:
|
|
620
|
-
|
|
621
|
-
|
|
1031
|
+
gemSlots: [
|
|
1032
|
+
{
|
|
1033
|
+
slot_type: 'PERIDOT',
|
|
1034
|
+
costs: [
|
|
1035
|
+
{
|
|
1036
|
+
type: 'ITEM',
|
|
1037
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
1038
|
+
amount: 20,
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
type: 'COINS',
|
|
1042
|
+
coins: 50000,
|
|
1043
|
+
},
|
|
1044
|
+
],
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
slot_type: 'PERIDOT',
|
|
1048
|
+
costs: [
|
|
1049
|
+
{
|
|
1050
|
+
type: 'ITEM',
|
|
1051
|
+
item_id: 'FINE_PERIDOT_GEM',
|
|
1052
|
+
amount: 40,
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
type: 'COINS',
|
|
1056
|
+
coins: 100000,
|
|
1057
|
+
},
|
|
1058
|
+
],
|
|
1059
|
+
},
|
|
1060
|
+
],
|
|
622
1061
|
baseStats: {
|
|
623
1062
|
[Stat.FarmingFortune]: 30,
|
|
624
1063
|
},
|