farming-weight 0.8.8 → 0.9.1

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.
Files changed (69) hide show
  1. package/dist/constants/crops.d.ts +2 -0
  2. package/dist/constants/crops.js +25 -0
  3. package/dist/constants/crops.js.map +1 -1
  4. package/dist/constants/enchants.d.ts +3 -0
  5. package/dist/constants/enchants.js +18 -0
  6. package/dist/constants/enchants.js.map +1 -1
  7. package/dist/constants/plots.d.ts +130 -0
  8. package/dist/constants/plots.js +157 -0
  9. package/dist/constants/plots.js.map +1 -0
  10. package/dist/constants/reforges.d.ts +1 -1
  11. package/dist/constants/reforges.js +105 -0
  12. package/dist/constants/reforges.js.map +1 -1
  13. package/dist/constants/specific.js +228 -1
  14. package/dist/constants/specific.js.map +1 -1
  15. package/dist/constants/upgrades.d.ts +31 -5
  16. package/dist/constants/upgrades.js +11 -1
  17. package/dist/constants/upgrades.js.map +1 -1
  18. package/dist/fortune/farmingarmor.d.ts +3 -2
  19. package/dist/fortune/farmingarmor.js +26 -9
  20. package/dist/fortune/farmingarmor.js.map +1 -1
  21. package/dist/fortune/farmingequipment.js +3 -3
  22. package/dist/fortune/farmingequipment.js.map +1 -1
  23. package/dist/fortune/farmingtool.d.ts +2 -1
  24. package/dist/fortune/farmingtool.js +16 -1
  25. package/dist/fortune/farmingtool.js.map +1 -1
  26. package/dist/fortune/item.d.ts +1 -1
  27. package/dist/fortune/upgradeable.d.ts +13 -3
  28. package/dist/fortune/upgradeable.js.map +1 -1
  29. package/dist/index.d.ts +1 -0
  30. package/dist/index.js +1 -0
  31. package/dist/index.js.map +1 -1
  32. package/dist/items/accessories.js +29 -2
  33. package/dist/items/accessories.js.map +1 -1
  34. package/dist/items/armor.d.ts +1 -1
  35. package/dist/items/armor.js +510 -71
  36. package/dist/items/armor.js.map +1 -1
  37. package/dist/items/equipment.d.ts +1 -1
  38. package/dist/items/equipment.js +1 -1
  39. package/dist/items/equipment.js.map +1 -1
  40. package/dist/items/tools.js +813 -85
  41. package/dist/items/tools.js.map +1 -1
  42. package/dist/player/player.d.ts +5 -2
  43. package/dist/player/player.js +52 -2
  44. package/dist/player/player.js.map +1 -1
  45. package/dist/player/playeroptions.d.ts +1 -0
  46. package/dist/player/playeroptions.js.map +1 -1
  47. package/dist/upgrades/sources/accessorysources.js +10 -8
  48. package/dist/upgrades/sources/accessorysources.js.map +1 -1
  49. package/dist/upgrades/sources/armorsetsources.js +42 -10
  50. package/dist/upgrades/sources/armorsetsources.js.map +1 -1
  51. package/dist/upgrades/sources/cropsources.js +46 -0
  52. package/dist/upgrades/sources/cropsources.js.map +1 -1
  53. package/dist/upgrades/sources/gearsources.js +12 -8
  54. package/dist/upgrades/sources/gearsources.js.map +1 -1
  55. package/dist/upgrades/sources/generalsources.js +130 -1
  56. package/dist/upgrades/sources/generalsources.js.map +1 -1
  57. package/dist/upgrades/sources/toolsources.d.ts +2 -1
  58. package/dist/upgrades/sources/toolsources.js +88 -13
  59. package/dist/upgrades/sources/toolsources.js.map +1 -1
  60. package/dist/upgrades/upgrades.d.ts +11 -1
  61. package/dist/upgrades/upgrades.js +293 -43
  62. package/dist/upgrades/upgrades.js.map +1 -1
  63. package/dist/util/garden.d.ts +9 -0
  64. package/dist/util/garden.js +18 -0
  65. package/dist/util/garden.js.map +1 -1
  66. package/dist/util/gems.d.ts +4 -4
  67. package/dist/util/gems.js +6 -0
  68. package/dist/util/gems.js.map +1 -1
  69. package/package.json +3 -2
@@ -166,9 +166,36 @@ export const FARMING_TOOLS = {
166
166
  maxRarity: Rarity.Legendary,
167
167
  reforgeType: ReforgeTarget.Hoe,
168
168
  type: FarmingToolType.Other,
169
- gemSlots: {
170
- peridot: 2,
171
- },
169
+ gemSlots: [
170
+ {
171
+ slot_type: 'PERIDOT',
172
+ costs: [
173
+ {
174
+ type: 'ITEM',
175
+ item_id: 'FINE_PERIDOT_GEM',
176
+ amount: 20,
177
+ },
178
+ {
179
+ type: 'COINS',
180
+ coins: 50000,
181
+ },
182
+ ],
183
+ },
184
+ {
185
+ slot_type: 'PERIDOT',
186
+ costs: [
187
+ {
188
+ type: 'ITEM',
189
+ item_id: 'FINE_PERIDOT_GEM',
190
+ amount: 40,
191
+ },
192
+ {
193
+ type: 'COINS',
194
+ coins: 100000,
195
+ },
196
+ ],
197
+ },
198
+ ],
172
199
  name: 'Cactus Knife',
173
200
  wiki: 'https://wiki.hypixel.net/Cactus_Knife',
174
201
  },
@@ -178,9 +205,36 @@ export const FARMING_TOOLS = {
178
205
  maxRarity: Rarity.Legendary,
179
206
  reforgeType: ReforgeTarget.Axe,
180
207
  type: FarmingToolType.Other,
181
- gemSlots: {
182
- peridot: 2,
183
- },
208
+ gemSlots: [
209
+ {
210
+ slot_type: 'PERIDOT',
211
+ costs: [
212
+ {
213
+ type: 'ITEM',
214
+ item_id: 'FINE_PERIDOT_GEM',
215
+ amount: 20,
216
+ },
217
+ {
218
+ type: 'COINS',
219
+ coins: 50000,
220
+ },
221
+ ],
222
+ },
223
+ {
224
+ slot_type: 'PERIDOT',
225
+ costs: [
226
+ {
227
+ type: 'ITEM',
228
+ item_id: 'FINE_PERIDOT_GEM',
229
+ amount: 40,
230
+ },
231
+ {
232
+ type: 'COINS',
233
+ coins: 100000,
234
+ },
235
+ ],
236
+ },
237
+ ],
184
238
  name: 'Cocoa Chopper',
185
239
  wiki: 'https://wiki.hypixel.net/Cocoa_Chopper',
186
240
  baseStats: {
@@ -193,9 +247,36 @@ export const FARMING_TOOLS = {
193
247
  maxRarity: Rarity.Legendary,
194
248
  reforgeType: ReforgeTarget.Hoe,
195
249
  type: FarmingToolType.Other,
196
- gemSlots: {
197
- peridot: 2,
198
- },
250
+ gemSlots: [
251
+ {
252
+ slot_type: 'PERIDOT',
253
+ costs: [
254
+ {
255
+ type: 'ITEM',
256
+ item_id: 'FINE_PERIDOT_GEM',
257
+ amount: 20,
258
+ },
259
+ {
260
+ type: 'COINS',
261
+ coins: 50000,
262
+ },
263
+ ],
264
+ },
265
+ {
266
+ slot_type: 'PERIDOT',
267
+ costs: [
268
+ {
269
+ type: 'ITEM',
270
+ item_id: 'FINE_PERIDOT_GEM',
271
+ amount: 40,
272
+ },
273
+ {
274
+ type: 'COINS',
275
+ coins: 100000,
276
+ },
277
+ ],
278
+ },
279
+ ],
199
280
  name: 'Fungi Cutter',
200
281
  wiki: 'https://wiki.hypixel.net/Fungi_Cutter',
201
282
  baseStats: {
@@ -211,10 +292,28 @@ export const FARMING_TOOLS = {
211
292
  upgrade: {
212
293
  id: 'MELON_DICER_2',
213
294
  reason: UpgradeReason.NextTier,
214
- },
215
- gemSlots: {
216
- peridot: 1,
217
- },
295
+ cost: {
296
+ items: {
297
+ ENCHANTED_MELON_BLOCK: 64,
298
+ },
299
+ },
300
+ },
301
+ gemSlots: [
302
+ {
303
+ slot_type: 'PERIDOT',
304
+ costs: [
305
+ {
306
+ type: 'ITEM',
307
+ item_id: 'FINE_PERIDOT_GEM',
308
+ amount: 20,
309
+ },
310
+ {
311
+ type: 'COINS',
312
+ coins: 50000,
313
+ },
314
+ ],
315
+ },
316
+ ],
218
317
  name: 'Melon Dicer',
219
318
  wiki: 'https://wiki.hypixel.net/Melon_Dicer',
220
319
  },
@@ -227,10 +326,42 @@ export const FARMING_TOOLS = {
227
326
  upgrade: {
228
327
  id: 'MELON_DICER_3',
229
328
  reason: UpgradeReason.NextTier,
230
- },
231
- gemSlots: {
232
- peridot: 2,
233
- },
329
+ cost: {
330
+ items: {
331
+ ENCHANTED_MELON_BLOCK: 128,
332
+ },
333
+ },
334
+ },
335
+ gemSlots: [
336
+ {
337
+ slot_type: 'PERIDOT',
338
+ costs: [
339
+ {
340
+ type: 'ITEM',
341
+ item_id: 'FINE_PERIDOT_GEM',
342
+ amount: 20,
343
+ },
344
+ {
345
+ type: 'COINS',
346
+ coins: 50000,
347
+ },
348
+ ],
349
+ },
350
+ {
351
+ slot_type: 'PERIDOT',
352
+ costs: [
353
+ {
354
+ type: 'ITEM',
355
+ item_id: 'FINE_PERIDOT_GEM',
356
+ amount: 40,
357
+ },
358
+ {
359
+ type: 'COINS',
360
+ coins: 100000,
361
+ },
362
+ ],
363
+ },
364
+ ],
234
365
  name: 'Melon Dicer 2.0',
235
366
  wiki: 'https://wiki.hypixel.net/Melon_Dicer_2.0',
236
367
  },
@@ -240,9 +371,50 @@ export const FARMING_TOOLS = {
240
371
  maxRarity: Rarity.Mythic,
241
372
  reforgeType: ReforgeTarget.Axe,
242
373
  type: FarmingToolType.Dicer,
243
- gemSlots: {
244
- peridot: 3,
245
- },
374
+ gemSlots: [
375
+ {
376
+ slot_type: 'PERIDOT',
377
+ costs: [
378
+ {
379
+ type: 'ITEM',
380
+ item_id: 'FINE_PERIDOT_GEM',
381
+ amount: 20,
382
+ },
383
+ {
384
+ type: 'COINS',
385
+ coins: 50000,
386
+ },
387
+ ],
388
+ },
389
+ {
390
+ slot_type: 'PERIDOT',
391
+ costs: [
392
+ {
393
+ type: 'ITEM',
394
+ item_id: 'FINE_PERIDOT_GEM',
395
+ amount: 40,
396
+ },
397
+ {
398
+ type: 'COINS',
399
+ coins: 100000,
400
+ },
401
+ ],
402
+ },
403
+ {
404
+ slot_type: 'PERIDOT',
405
+ costs: [
406
+ {
407
+ type: 'ITEM',
408
+ item_id: 'FLAWLESS_PERIDOT_GEM',
409
+ amount: 1,
410
+ },
411
+ {
412
+ type: 'COINS',
413
+ coins: 250000,
414
+ },
415
+ ],
416
+ },
417
+ ],
246
418
  name: 'Melon Dicer 3.0',
247
419
  wiki: 'https://wiki.hypixel.net/Melon_Dicer_3.0',
248
420
  },
@@ -255,10 +427,28 @@ export const FARMING_TOOLS = {
255
427
  upgrade: {
256
428
  id: 'PUMPKIN_DICER_2',
257
429
  reason: UpgradeReason.NextTier,
258
- },
259
- gemSlots: {
260
- peridot: 1,
261
- },
430
+ cost: {
431
+ items: {
432
+ POLISHED_PUMPKIN: 16,
433
+ },
434
+ },
435
+ },
436
+ gemSlots: [
437
+ {
438
+ slot_type: 'PERIDOT',
439
+ costs: [
440
+ {
441
+ type: 'ITEM',
442
+ item_id: 'FINE_PERIDOT_GEM',
443
+ amount: 20,
444
+ },
445
+ {
446
+ type: 'COINS',
447
+ coins: 50000,
448
+ },
449
+ ],
450
+ },
451
+ ],
262
452
  name: 'Pumpkin Dicer',
263
453
  wiki: 'https://wiki.hypixel.net/Pumpkin_Dicer',
264
454
  },
@@ -268,12 +458,44 @@ export const FARMING_TOOLS = {
268
458
  maxRarity: Rarity.Legendary,
269
459
  reforgeType: ReforgeTarget.Axe,
270
460
  type: FarmingToolType.Dicer,
271
- gemSlots: {
272
- peridot: 2,
273
- },
461
+ gemSlots: [
462
+ {
463
+ slot_type: 'PERIDOT',
464
+ costs: [
465
+ {
466
+ type: 'ITEM',
467
+ item_id: 'FINE_PERIDOT_GEM',
468
+ amount: 20,
469
+ },
470
+ {
471
+ type: 'COINS',
472
+ coins: 50000,
473
+ },
474
+ ],
475
+ },
476
+ {
477
+ slot_type: 'PERIDOT',
478
+ costs: [
479
+ {
480
+ type: 'ITEM',
481
+ item_id: 'FINE_PERIDOT_GEM',
482
+ amount: 40,
483
+ },
484
+ {
485
+ type: 'COINS',
486
+ coins: 100000,
487
+ },
488
+ ],
489
+ },
490
+ ],
274
491
  upgrade: {
275
492
  id: 'PUMPKIN_DICER_3',
276
493
  reason: UpgradeReason.NextTier,
494
+ cost: {
495
+ items: {
496
+ POLISHED_PUMPKIN: 32,
497
+ },
498
+ },
277
499
  },
278
500
  name: 'Pumpkin Dicer 2.0',
279
501
  wiki: 'https://wiki.hypixel.net/Pumpkin_Dicer_2.0',
@@ -284,9 +506,50 @@ export const FARMING_TOOLS = {
284
506
  maxRarity: Rarity.Mythic,
285
507
  reforgeType: ReforgeTarget.Axe,
286
508
  type: FarmingToolType.Dicer,
287
- gemSlots: {
288
- peridot: 3,
289
- },
509
+ gemSlots: [
510
+ {
511
+ slot_type: 'PERIDOT',
512
+ costs: [
513
+ {
514
+ type: 'ITEM',
515
+ item_id: 'FINE_PERIDOT_GEM',
516
+ amount: 20,
517
+ },
518
+ {
519
+ type: 'COINS',
520
+ coins: 50000,
521
+ },
522
+ ],
523
+ },
524
+ {
525
+ slot_type: 'PERIDOT',
526
+ costs: [
527
+ {
528
+ type: 'ITEM',
529
+ item_id: 'FINE_PERIDOT_GEM',
530
+ amount: 40,
531
+ },
532
+ {
533
+ type: 'COINS',
534
+ coins: 100000,
535
+ },
536
+ ],
537
+ },
538
+ {
539
+ slot_type: 'PERIDOT',
540
+ costs: [
541
+ {
542
+ type: 'ITEM',
543
+ item_id: 'FLAWLESS_PERIDOT_GEM',
544
+ amount: 1,
545
+ },
546
+ {
547
+ type: 'COINS',
548
+ coins: 250000,
549
+ },
550
+ ],
551
+ },
552
+ ],
290
553
  name: 'Pumpkin Dicer 3.0',
291
554
  wiki: 'https://wiki.hypixel.net/Pumpkin_Dicer_3.0',
292
555
  },
@@ -299,10 +562,29 @@ export const FARMING_TOOLS = {
299
562
  upgrade: {
300
563
  id: 'THEORETICAL_HOE_CARROT_2',
301
564
  reason: UpgradeReason.NextTier,
302
- },
303
- gemSlots: {
304
- peridot: 1,
305
- },
565
+ cost: {
566
+ items: {
567
+ JACOBS_TICKET: 64,
568
+ ENCHANTED_CARROT: 256,
569
+ },
570
+ },
571
+ },
572
+ gemSlots: [
573
+ {
574
+ slot_type: 'PERIDOT',
575
+ costs: [
576
+ {
577
+ type: 'ITEM',
578
+ item_id: 'FINE_PERIDOT_GEM',
579
+ amount: 20,
580
+ },
581
+ {
582
+ type: 'COINS',
583
+ coins: 50000,
584
+ },
585
+ ],
586
+ },
587
+ ],
306
588
  name: 'Gauss Carrot Hoe',
307
589
  wiki: 'https://wiki.hypixel.net/Gauss_Carrot_Hoe#Common_',
308
590
  stats: t1hoeStats,
@@ -316,10 +598,43 @@ export const FARMING_TOOLS = {
316
598
  upgrade: {
317
599
  id: 'THEORETICAL_HOE_CARROT_3',
318
600
  reason: UpgradeReason.NextTier,
319
- },
320
- gemSlots: {
321
- peridot: 2,
322
- },
601
+ cost: {
602
+ items: {
603
+ JACOBS_TICKET: 256,
604
+ ENCHANTED_GOLDEN_CARROT: 256,
605
+ },
606
+ },
607
+ },
608
+ gemSlots: [
609
+ {
610
+ slot_type: 'PERIDOT',
611
+ costs: [
612
+ {
613
+ type: 'ITEM',
614
+ item_id: 'FINE_PERIDOT_GEM',
615
+ amount: 20,
616
+ },
617
+ {
618
+ type: 'COINS',
619
+ coins: 50000,
620
+ },
621
+ ],
622
+ },
623
+ {
624
+ slot_type: 'PERIDOT',
625
+ costs: [
626
+ {
627
+ type: 'ITEM',
628
+ item_id: 'FINE_PERIDOT_GEM',
629
+ amount: 40,
630
+ },
631
+ {
632
+ type: 'COINS',
633
+ coins: 100000,
634
+ },
635
+ ],
636
+ },
637
+ ],
323
638
  name: 'Gauss Carrot Hoe',
324
639
  wiki: 'https://wiki.hypixel.net/Gauss_Carrot_Hoe#Uncommon_',
325
640
  stats: t2hoeStats,
@@ -330,9 +645,50 @@ export const FARMING_TOOLS = {
330
645
  maxRarity: Rarity.Mythic,
331
646
  reforgeType: ReforgeTarget.Hoe,
332
647
  type: FarmingToolType.MathematicalHoe,
333
- gemSlots: {
334
- peridot: 3,
335
- },
648
+ gemSlots: [
649
+ {
650
+ slot_type: 'PERIDOT',
651
+ costs: [
652
+ {
653
+ type: 'ITEM',
654
+ item_id: 'FINE_PERIDOT_GEM',
655
+ amount: 20,
656
+ },
657
+ {
658
+ type: 'COINS',
659
+ coins: 50000,
660
+ },
661
+ ],
662
+ },
663
+ {
664
+ slot_type: 'PERIDOT',
665
+ costs: [
666
+ {
667
+ type: 'ITEM',
668
+ item_id: 'FINE_PERIDOT_GEM',
669
+ amount: 40,
670
+ },
671
+ {
672
+ type: 'COINS',
673
+ coins: 100000,
674
+ },
675
+ ],
676
+ },
677
+ {
678
+ slot_type: 'PERIDOT',
679
+ costs: [
680
+ {
681
+ type: 'ITEM',
682
+ item_id: 'FLAWLESS_PERIDOT_GEM',
683
+ amount: 1,
684
+ },
685
+ {
686
+ type: 'COINS',
687
+ coins: 250000,
688
+ },
689
+ ],
690
+ },
691
+ ],
336
692
  name: 'Gauss Carrot Hoe',
337
693
  wiki: 'https://wiki.hypixel.net/Gauss_Carrot_Hoe#Rare_',
338
694
  stats: t3hoeStats,
@@ -346,10 +702,29 @@ export const FARMING_TOOLS = {
346
702
  upgrade: {
347
703
  id: 'THEORETICAL_HOE_WARTS_2',
348
704
  reason: UpgradeReason.NextTier,
349
- },
350
- gemSlots: {
351
- peridot: 1,
352
- },
705
+ cost: {
706
+ items: {
707
+ JACOBS_TICKET: 64,
708
+ ENCHANTED_NETHER_STALK: 256,
709
+ },
710
+ },
711
+ },
712
+ gemSlots: [
713
+ {
714
+ slot_type: 'PERIDOT',
715
+ costs: [
716
+ {
717
+ type: 'ITEM',
718
+ item_id: 'FINE_PERIDOT_GEM',
719
+ amount: 20,
720
+ },
721
+ {
722
+ type: 'COINS',
723
+ coins: 50000,
724
+ },
725
+ ],
726
+ },
727
+ ],
353
728
  name: 'Newton Nether Warts Hoe',
354
729
  wiki: 'https://wiki.hypixel.net/Newton_Nether_Warts_Hoe#Common_',
355
730
  stats: t1hoeStats,
@@ -363,10 +738,43 @@ export const FARMING_TOOLS = {
363
738
  upgrade: {
364
739
  id: 'THEORETICAL_HOE_WARTS_3',
365
740
  reason: UpgradeReason.NextTier,
366
- },
367
- gemSlots: {
368
- peridot: 2,
369
- },
741
+ cost: {
742
+ items: {
743
+ JACOBS_TICKET: 256,
744
+ MUTANT_NETHER_STALK: 256,
745
+ },
746
+ },
747
+ },
748
+ gemSlots: [
749
+ {
750
+ slot_type: 'PERIDOT',
751
+ costs: [
752
+ {
753
+ type: 'ITEM',
754
+ item_id: 'FINE_PERIDOT_GEM',
755
+ amount: 20,
756
+ },
757
+ {
758
+ type: 'COINS',
759
+ coins: 50000,
760
+ },
761
+ ],
762
+ },
763
+ {
764
+ slot_type: 'PERIDOT',
765
+ costs: [
766
+ {
767
+ type: 'ITEM',
768
+ item_id: 'FINE_PERIDOT_GEM',
769
+ amount: 40,
770
+ },
771
+ {
772
+ type: 'COINS',
773
+ coins: 100000,
774
+ },
775
+ ],
776
+ },
777
+ ],
370
778
  name: 'Newton Nether Warts Hoe',
371
779
  wiki: 'https://wiki.hypixel.net/Newton_Nether_Warts_Hoe#Uncommon_',
372
780
  stats: t2hoeStats,
@@ -377,9 +785,50 @@ export const FARMING_TOOLS = {
377
785
  maxRarity: Rarity.Mythic,
378
786
  reforgeType: ReforgeTarget.Hoe,
379
787
  type: FarmingToolType.MathematicalHoe,
380
- gemSlots: {
381
- peridot: 3,
382
- },
788
+ gemSlots: [
789
+ {
790
+ slot_type: 'PERIDOT',
791
+ costs: [
792
+ {
793
+ type: 'ITEM',
794
+ item_id: 'FINE_PERIDOT_GEM',
795
+ amount: 20,
796
+ },
797
+ {
798
+ type: 'COINS',
799
+ coins: 50000,
800
+ },
801
+ ],
802
+ },
803
+ {
804
+ slot_type: 'PERIDOT',
805
+ costs: [
806
+ {
807
+ type: 'ITEM',
808
+ item_id: 'FINE_PERIDOT_GEM',
809
+ amount: 40,
810
+ },
811
+ {
812
+ type: 'COINS',
813
+ coins: 100000,
814
+ },
815
+ ],
816
+ },
817
+ {
818
+ slot_type: 'PERIDOT',
819
+ costs: [
820
+ {
821
+ type: 'ITEM',
822
+ item_id: 'FLAWLESS_PERIDOT_GEM',
823
+ amount: 1,
824
+ },
825
+ {
826
+ type: 'COINS',
827
+ coins: 250000,
828
+ },
829
+ ],
830
+ },
831
+ ],
383
832
  name: 'Newton Nether Warts Hoe',
384
833
  wiki: 'https://wiki.hypixel.net/Newton_Nether_Warts_Hoe#Rare_',
385
834
  stats: t3hoeStats,
@@ -393,10 +842,29 @@ export const FARMING_TOOLS = {
393
842
  upgrade: {
394
843
  id: 'THEORETICAL_HOE_POTATO_2',
395
844
  reason: UpgradeReason.NextTier,
396
- },
397
- gemSlots: {
398
- peridot: 1,
399
- },
845
+ cost: {
846
+ items: {
847
+ JACOBS_TICKET: 64,
848
+ ENCHANTED_POTATO: 256,
849
+ },
850
+ },
851
+ },
852
+ gemSlots: [
853
+ {
854
+ slot_type: 'PERIDOT',
855
+ costs: [
856
+ {
857
+ type: 'ITEM',
858
+ item_id: 'FINE_PERIDOT_GEM',
859
+ amount: 20,
860
+ },
861
+ {
862
+ type: 'COINS',
863
+ coins: 50000,
864
+ },
865
+ ],
866
+ },
867
+ ],
400
868
  name: 'Pythagorean Potato Hoe',
401
869
  wiki: 'https://wiki.hypixel.net/Pythagorean_Potato_Hoe#Common_',
402
870
  stats: t1hoeStats,
@@ -410,10 +878,43 @@ export const FARMING_TOOLS = {
410
878
  upgrade: {
411
879
  id: 'THEORETICAL_HOE_POTATO_3',
412
880
  reason: UpgradeReason.NextTier,
413
- },
414
- gemSlots: {
415
- peridot: 2,
416
- },
881
+ cost: {
882
+ items: {
883
+ JACOBS_TICKET: 256,
884
+ ENCHANTED_BAKED_POTATO: 256,
885
+ },
886
+ },
887
+ },
888
+ gemSlots: [
889
+ {
890
+ slot_type: 'PERIDOT',
891
+ costs: [
892
+ {
893
+ type: 'ITEM',
894
+ item_id: 'FINE_PERIDOT_GEM',
895
+ amount: 20,
896
+ },
897
+ {
898
+ type: 'COINS',
899
+ coins: 50000,
900
+ },
901
+ ],
902
+ },
903
+ {
904
+ slot_type: 'PERIDOT',
905
+ costs: [
906
+ {
907
+ type: 'ITEM',
908
+ item_id: 'FINE_PERIDOT_GEM',
909
+ amount: 40,
910
+ },
911
+ {
912
+ type: 'COINS',
913
+ coins: 100000,
914
+ },
915
+ ],
916
+ },
917
+ ],
417
918
  name: 'Pythagorean Potato Hoe',
418
919
  wiki: 'https://wiki.hypixel.net/Pythagorean_Potato_Hoe#Uncommon_',
419
920
  stats: t2hoeStats,
@@ -424,9 +925,50 @@ export const FARMING_TOOLS = {
424
925
  maxRarity: Rarity.Mythic,
425
926
  reforgeType: ReforgeTarget.Hoe,
426
927
  type: FarmingToolType.MathematicalHoe,
427
- gemSlots: {
428
- peridot: 3,
429
- },
928
+ gemSlots: [
929
+ {
930
+ slot_type: 'PERIDOT',
931
+ costs: [
932
+ {
933
+ type: 'ITEM',
934
+ item_id: 'FINE_PERIDOT_GEM',
935
+ amount: 20,
936
+ },
937
+ {
938
+ type: 'COINS',
939
+ coins: 50000,
940
+ },
941
+ ],
942
+ },
943
+ {
944
+ slot_type: 'PERIDOT',
945
+ costs: [
946
+ {
947
+ type: 'ITEM',
948
+ item_id: 'FINE_PERIDOT_GEM',
949
+ amount: 40,
950
+ },
951
+ {
952
+ type: 'COINS',
953
+ coins: 100000,
954
+ },
955
+ ],
956
+ },
957
+ {
958
+ slot_type: 'PERIDOT',
959
+ costs: [
960
+ {
961
+ type: 'ITEM',
962
+ item_id: 'FLAWLESS_PERIDOT_GEM',
963
+ amount: 1,
964
+ },
965
+ {
966
+ type: 'COINS',
967
+ coins: 250000,
968
+ },
969
+ ],
970
+ },
971
+ ],
430
972
  name: 'Pythagorean Potato Hoe',
431
973
  wiki: 'https://wiki.hypixel.net/Pythagorean_Potato_Hoe#Rare_',
432
974
  stats: t3hoeStats,
@@ -440,10 +982,29 @@ export const FARMING_TOOLS = {
440
982
  upgrade: {
441
983
  id: 'THEORETICAL_HOE_CANE_2',
442
984
  reason: UpgradeReason.NextTier,
443
- },
444
- gemSlots: {
445
- peridot: 1,
446
- },
985
+ cost: {
986
+ items: {
987
+ JACOBS_TICKET: 64,
988
+ ENCHANTED_SUGAR: 256,
989
+ },
990
+ },
991
+ },
992
+ gemSlots: [
993
+ {
994
+ slot_type: 'PERIDOT',
995
+ costs: [
996
+ {
997
+ type: 'ITEM',
998
+ item_id: 'FINE_PERIDOT_GEM',
999
+ amount: 20,
1000
+ },
1001
+ {
1002
+ type: 'COINS',
1003
+ coins: 50000,
1004
+ },
1005
+ ],
1006
+ },
1007
+ ],
447
1008
  name: 'Turing Sugar Cane Hoe',
448
1009
  wiki: 'https://wiki.hypixel.net/Turing_Sugar_Cane_Hoe#Common_',
449
1010
  stats: t1hoeStats,
@@ -457,10 +1018,43 @@ export const FARMING_TOOLS = {
457
1018
  upgrade: {
458
1019
  id: 'THEORETICAL_HOE_CANE_3',
459
1020
  reason: UpgradeReason.NextTier,
460
- },
461
- gemSlots: {
462
- peridot: 2,
463
- },
1021
+ cost: {
1022
+ items: {
1023
+ JACOBS_TICKET: 256,
1024
+ ENCHANTED_SUGAR_CANE: 256,
1025
+ },
1026
+ },
1027
+ },
1028
+ gemSlots: [
1029
+ {
1030
+ slot_type: 'PERIDOT',
1031
+ costs: [
1032
+ {
1033
+ type: 'ITEM',
1034
+ item_id: 'FINE_PERIDOT_GEM',
1035
+ amount: 20,
1036
+ },
1037
+ {
1038
+ type: 'COINS',
1039
+ coins: 50000,
1040
+ },
1041
+ ],
1042
+ },
1043
+ {
1044
+ slot_type: 'PERIDOT',
1045
+ costs: [
1046
+ {
1047
+ type: 'ITEM',
1048
+ item_id: 'FINE_PERIDOT_GEM',
1049
+ amount: 40,
1050
+ },
1051
+ {
1052
+ type: 'COINS',
1053
+ coins: 100000,
1054
+ },
1055
+ ],
1056
+ },
1057
+ ],
464
1058
  name: 'Turing Sugar Cane Hoe',
465
1059
  wiki: 'https://wiki.hypixel.net/Turing_Sugar_Cane_Hoe#Uncommon_',
466
1060
  stats: t2hoeStats,
@@ -471,9 +1065,50 @@ export const FARMING_TOOLS = {
471
1065
  maxRarity: Rarity.Mythic,
472
1066
  reforgeType: ReforgeTarget.Hoe,
473
1067
  type: FarmingToolType.MathematicalHoe,
474
- gemSlots: {
475
- peridot: 3,
476
- },
1068
+ gemSlots: [
1069
+ {
1070
+ slot_type: 'PERIDOT',
1071
+ costs: [
1072
+ {
1073
+ type: 'ITEM',
1074
+ item_id: 'FINE_PERIDOT_GEM',
1075
+ amount: 20,
1076
+ },
1077
+ {
1078
+ type: 'COINS',
1079
+ coins: 50000,
1080
+ },
1081
+ ],
1082
+ },
1083
+ {
1084
+ slot_type: 'PERIDOT',
1085
+ costs: [
1086
+ {
1087
+ type: 'ITEM',
1088
+ item_id: 'FINE_PERIDOT_GEM',
1089
+ amount: 40,
1090
+ },
1091
+ {
1092
+ type: 'COINS',
1093
+ coins: 100000,
1094
+ },
1095
+ ],
1096
+ },
1097
+ {
1098
+ slot_type: 'PERIDOT',
1099
+ costs: [
1100
+ {
1101
+ type: 'ITEM',
1102
+ item_id: 'FLAWLESS_PERIDOT_GEM',
1103
+ amount: 1,
1104
+ },
1105
+ {
1106
+ type: 'COINS',
1107
+ coins: 250000,
1108
+ },
1109
+ ],
1110
+ },
1111
+ ],
477
1112
  name: 'Turing Sugar Cane Hoe',
478
1113
  wiki: 'https://wiki.hypixel.net/Turing_Sugar_Cane_Hoe#Rare_',
479
1114
  stats: t3hoeStats,
@@ -487,10 +1122,29 @@ export const FARMING_TOOLS = {
487
1122
  upgrade: {
488
1123
  id: 'THEORETICAL_HOE_WHEAT_2',
489
1124
  reason: UpgradeReason.NextTier,
490
- },
491
- gemSlots: {
492
- peridot: 1,
493
- },
1125
+ cost: {
1126
+ items: {
1127
+ JACOBS_TICKET: 64,
1128
+ ENCHANTED_WHEAT: 256,
1129
+ },
1130
+ },
1131
+ },
1132
+ gemSlots: [
1133
+ {
1134
+ slot_type: 'PERIDOT',
1135
+ costs: [
1136
+ {
1137
+ type: 'ITEM',
1138
+ item_id: 'FINE_PERIDOT_GEM',
1139
+ amount: 20,
1140
+ },
1141
+ {
1142
+ type: 'COINS',
1143
+ coins: 50000,
1144
+ },
1145
+ ],
1146
+ },
1147
+ ],
494
1148
  name: "Euclid's Wheat Hoe",
495
1149
  wiki: 'https://wiki.hypixel.net/Euclid%27s_Wheat_Hoe#Common_',
496
1150
  stats: t1hoeStats,
@@ -504,10 +1158,43 @@ export const FARMING_TOOLS = {
504
1158
  upgrade: {
505
1159
  id: 'THEORETICAL_HOE_WHEAT_3',
506
1160
  reason: UpgradeReason.NextTier,
507
- },
508
- gemSlots: {
509
- peridot: 2,
510
- },
1161
+ cost: {
1162
+ items: {
1163
+ JACOBS_TICKET: 256,
1164
+ ENCHANTED_HAY_BALE: 256,
1165
+ },
1166
+ },
1167
+ },
1168
+ gemSlots: [
1169
+ {
1170
+ slot_type: 'PERIDOT',
1171
+ costs: [
1172
+ {
1173
+ type: 'ITEM',
1174
+ item_id: 'FINE_PERIDOT_GEM',
1175
+ amount: 20,
1176
+ },
1177
+ {
1178
+ type: 'COINS',
1179
+ coins: 50000,
1180
+ },
1181
+ ],
1182
+ },
1183
+ {
1184
+ slot_type: 'PERIDOT',
1185
+ costs: [
1186
+ {
1187
+ type: 'ITEM',
1188
+ item_id: 'FINE_PERIDOT_GEM',
1189
+ amount: 40,
1190
+ },
1191
+ {
1192
+ type: 'COINS',
1193
+ coins: 100000,
1194
+ },
1195
+ ],
1196
+ },
1197
+ ],
511
1198
  name: "Euclid's Wheat Hoe",
512
1199
  wiki: 'https://wiki.hypixel.net/Euclid%27s_Wheat_Hoe#Uncommon_',
513
1200
  stats: t2hoeStats,
@@ -518,9 +1205,50 @@ export const FARMING_TOOLS = {
518
1205
  maxRarity: Rarity.Mythic,
519
1206
  reforgeType: ReforgeTarget.Hoe,
520
1207
  type: FarmingToolType.MathematicalHoe,
521
- gemSlots: {
522
- peridot: 3,
523
- },
1208
+ gemSlots: [
1209
+ {
1210
+ slot_type: 'PERIDOT',
1211
+ costs: [
1212
+ {
1213
+ type: 'ITEM',
1214
+ item_id: 'FINE_PERIDOT_GEM',
1215
+ amount: 20,
1216
+ },
1217
+ {
1218
+ type: 'COINS',
1219
+ coins: 50000,
1220
+ },
1221
+ ],
1222
+ },
1223
+ {
1224
+ slot_type: 'PERIDOT',
1225
+ costs: [
1226
+ {
1227
+ type: 'ITEM',
1228
+ item_id: 'FINE_PERIDOT_GEM',
1229
+ amount: 40,
1230
+ },
1231
+ {
1232
+ type: 'COINS',
1233
+ coins: 100000,
1234
+ },
1235
+ ],
1236
+ },
1237
+ {
1238
+ slot_type: 'PERIDOT',
1239
+ costs: [
1240
+ {
1241
+ type: 'ITEM',
1242
+ item_id: 'FLAWLESS_PERIDOT_GEM',
1243
+ amount: 1,
1244
+ },
1245
+ {
1246
+ type: 'COINS',
1247
+ coins: 250000,
1248
+ },
1249
+ ],
1250
+ },
1251
+ ],
524
1252
  name: "Euclid's Wheat Hoe",
525
1253
  wiki: 'https://wiki.hypixel.net/Euclid%27s_Wheat_Hoe#Rare_',
526
1254
  stats: t3hoeStats,