@skullandbonestools/snbdata 6.2.1 → 7.0.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.
Files changed (89) hide show
  1. package/data/achievements.json +144 -0
  2. package/data/cosmetics.json +123 -2
  3. package/data/items.json +656 -112
  4. package/data/materials.json +52 -26
  5. package/data/modifications.json +483 -0
  6. package/data/seasons.json +7 -0
  7. package/data/sets.json +12 -0
  8. package/data/ships.json +87 -30
  9. package/data/territories.json +2 -2
  10. package/dist/daos/cosmetics.d.ts +3 -1
  11. package/dist/daos/cosmetics.d.ts.map +1 -1
  12. package/dist/daos/cosmetics.js +5 -2
  13. package/dist/daos/cosmetics.js.map +1 -1
  14. package/dist/daos/modifications.d.ts +1 -1
  15. package/dist/daos/modifications.d.ts.map +1 -1
  16. package/dist/types/Category.d.ts +1 -1
  17. package/dist/types/Category.d.ts.map +1 -1
  18. package/dist/types/Category.js +1 -1
  19. package/dist/types/Category.js.map +1 -1
  20. package/dist/types/CosmeticProperties.d.ts +1 -1
  21. package/dist/types/CosmeticProperties.d.ts.map +1 -1
  22. package/dist/types/CosmeticProperties.js +1 -1
  23. package/dist/types/CosmeticProperties.js.map +1 -1
  24. package/dist/types/ModificationProperties.d.ts +1 -1
  25. package/dist/types/ModificationProperties.d.ts.map +1 -1
  26. package/dist/types/ModificationProperties.js.map +1 -1
  27. package/languages/ar/ar_achievements.json +72 -0
  28. package/languages/ar/ar_cosmetics.json +84 -0
  29. package/languages/ar/ar_items.json +115 -0
  30. package/languages/ar/ar_locations.json +12 -1
  31. package/languages/ar/ar_modifications.json +131 -0
  32. package/languages/ar/ar_perks.json +146 -12
  33. package/languages/ar/ar_seasons.json +2 -1
  34. package/languages/ar/ar_sets.json +4 -1
  35. package/languages/ar/ar_ships.json +6 -0
  36. package/languages/ar/ar_territories.json +2 -2
  37. package/languages/de/de_achievements.json +74 -2
  38. package/languages/de/de_commodities.json +2 -2
  39. package/languages/de/de_cosmetics.json +84 -0
  40. package/languages/de/de_items.json +119 -4
  41. package/languages/de/de_locations.json +54 -43
  42. package/languages/de/de_modifications.json +131 -0
  43. package/languages/de/de_perks.json +148 -14
  44. package/languages/de/de_regions.json +4 -4
  45. package/languages/de/de_seasons.json +2 -1
  46. package/languages/de/de_sets.json +4 -1
  47. package/languages/de/de_ships.json +6 -0
  48. package/languages/de/de_territories.json +47 -47
  49. package/languages/en/en_achievements.json +72 -0
  50. package/languages/en/en_cosmetics.json +84 -0
  51. package/languages/en/en_items.json +115 -0
  52. package/languages/en/en_locations.json +12 -1
  53. package/languages/en/en_modifications.json +131 -0
  54. package/languages/en/en_perks.json +146 -12
  55. package/languages/en/en_seasons.json +2 -1
  56. package/languages/en/en_sets.json +4 -1
  57. package/languages/en/en_ships.json +6 -0
  58. package/languages/en/en_territories.json +2 -2
  59. package/languages/es/es_achievements.json +72 -0
  60. package/languages/es/es_cosmetics.json +84 -0
  61. package/languages/es/es_items.json +115 -0
  62. package/languages/es/es_locations.json +12 -1
  63. package/languages/es/es_modifications.json +131 -0
  64. package/languages/es/es_perks.json +146 -12
  65. package/languages/es/es_seasons.json +2 -1
  66. package/languages/es/es_sets.json +4 -1
  67. package/languages/es/es_ships.json +6 -0
  68. package/languages/es/es_territories.json +2 -2
  69. package/languages/fr/fr_achievements.json +72 -0
  70. package/languages/fr/fr_cosmetics.json +84 -0
  71. package/languages/fr/fr_items.json +115 -0
  72. package/languages/fr/fr_locations.json +12 -1
  73. package/languages/fr/fr_modifications.json +131 -0
  74. package/languages/fr/fr_perks.json +146 -12
  75. package/languages/fr/fr_seasons.json +2 -1
  76. package/languages/fr/fr_sets.json +4 -1
  77. package/languages/fr/fr_ships.json +6 -0
  78. package/languages/fr/fr_territories.json +2 -2
  79. package/languages/source/achievements.json +72 -0
  80. package/languages/source/cosmetics.json +84 -0
  81. package/languages/source/items.json +115 -0
  82. package/languages/source/locations.json +12 -1
  83. package/languages/source/modifications.json +131 -0
  84. package/languages/source/perks.json +146 -12
  85. package/languages/source/seasons.json +2 -1
  86. package/languages/source/sets.json +4 -1
  87. package/languages/source/ships.json +6 -0
  88. package/languages/source/territories.json +2 -2
  89. package/package.json +1 -1
package/data/items.json CHANGED
@@ -1368,7 +1368,8 @@
1368
1368
  "flooding": 0,
1369
1369
  "fire": 0.18,
1370
1370
  "tearing": 0,
1371
- "piercing": 0.2
1371
+ "piercing": 0.2,
1372
+ "toxic": 0.2
1372
1373
  },
1373
1374
  "required": {
1374
1375
  "magnetiteIngot": 14,
@@ -1383,7 +1384,7 @@
1383
1384
  ],
1384
1385
  "obtainable": ["legacyCache3","legacyCache1"],
1385
1386
  "dateAdded": "2024-02-05",
1386
- "lastUpdated": "2025-09-04"
1387
+ "lastUpdated": "2025-10-21"
1387
1388
  },
1388
1389
  "ouroboros": {
1389
1390
  "id": "ouroboros",
@@ -1401,7 +1402,9 @@
1401
1402
  "flooding": 0.3,
1402
1403
  "fire": 0.3,
1403
1404
  "tearing": 0,
1404
- "piercing": 0
1405
+ "piercing": 0,
1406
+ "electric": 0.2,
1407
+ "toxic": 0
1405
1408
  },
1406
1409
  "required": {
1407
1410
  "silver": 3800,
@@ -1416,7 +1419,7 @@
1416
1419
  "restoration"
1417
1420
  ],
1418
1421
  "dateAdded": "2024-02-05",
1419
- "lastUpdated": "2025-07-29"
1422
+ "lastUpdated": "2025-10-21"
1420
1423
  },
1421
1424
  "wrathfulWard": {
1422
1425
  "id": "wrathfulWard",
@@ -1440,7 +1443,8 @@
1440
1443
  "flooding": 0.25,
1441
1444
  "fire": 0.15,
1442
1445
  "tearing": 0,
1443
- "piercing": 0.15
1446
+ "piercing": 0.15,
1447
+ "toxic": 0.25
1444
1448
  },
1445
1449
  "required": {
1446
1450
  "plagueDust": 8,
@@ -1454,7 +1458,7 @@
1454
1458
  "venemousVengeance"
1455
1459
  ],
1456
1460
  "dateAdded": "2024-02-27",
1457
- "lastUpdated": "2025-09-06"
1461
+ "lastUpdated": "2025-10-21"
1458
1462
  },
1459
1463
  "wailingWard": {
1460
1464
  "id": "wailingWard",
@@ -1477,7 +1481,8 @@
1477
1481
  "flooding": 0.15,
1478
1482
  "fire": 0.25,
1479
1483
  "tearing": 0,
1480
- "piercing": 0.25
1484
+ "piercing": 0.25,
1485
+ "toxic": 0.28
1481
1486
  },
1482
1487
  "required": {
1483
1488
  "greenheartPlank": 14,
@@ -1492,7 +1497,7 @@
1492
1497
  "agileGuard"
1493
1498
  ],
1494
1499
  "dateAdded": "2024-02-27",
1495
- "lastUpdated": "2025-08-17"
1500
+ "lastUpdated": "2025-10-21"
1496
1501
  },
1497
1502
  "royalCustodian": {
1498
1503
  "id": "royalCustodian",
@@ -1511,7 +1516,9 @@
1511
1516
  "flooding": 0.12,
1512
1517
  "fire": 0.12,
1513
1518
  "tearing": 0,
1514
- "piercing": 0.3
1519
+ "piercing": 0.3,
1520
+ "electric": 0.12,
1521
+ "toxic": 0.12
1515
1522
  },
1516
1523
  "required": {
1517
1524
  "wormDrive": 3,
@@ -1525,7 +1532,7 @@
1525
1532
  "refortify"
1526
1533
  ],
1527
1534
  "dateAdded": "2024-02-15",
1528
- "lastUpdated": "2025-07-29"
1535
+ "lastUpdated": "2025-10-21"
1529
1536
  },
1530
1537
  "mortar1": {
1531
1538
  "id": "mortar1",
@@ -1828,27 +1835,26 @@
1828
1835
  "rarity": "epic",
1829
1836
  "season": "ragingTides",
1830
1837
  "requiredRank": "kingpin1",
1831
- "obtainable": ["laPestesStrongbox","theHelmSeasonal","legacyCache1"],
1838
+ "obtainable": ["laPestesStrongbox","legacyCache1"],
1832
1839
  "value": 1,
1833
1840
  "weight": 1000,
1834
1841
  "gearScore": 91,
1835
1842
  "projectilesPerShot": 1,
1836
- "damagePerShot": 12300,
1843
+ "damagePerShot": 10557,
1837
1844
  "rateOfFire": 0,
1838
1845
  "reloadSpeed": 20000,
1839
1846
  "optimalRange": 600,
1840
1847
  "timeToTarget": 5750,
1841
1848
  "blastRadius": 50,
1842
- "required": {
1843
- "sovereigns": 600
1844
- },
1849
+ "required": {},
1845
1850
  "perks": [
1846
1851
  "blast",
1847
1852
  "putrefying",
1853
+ "toxic3",
1848
1854
  "noDefaultCrit"
1849
1855
  ],
1850
1856
  "dateAdded": "2024-02-27",
1851
- "lastUpdated": "2025-09-06"
1857
+ "lastUpdated": "2025-10-21"
1852
1858
  },
1853
1859
  "rocket1": {
1854
1860
  "id": "rocket1",
@@ -3175,7 +3181,7 @@
3175
3181
  "perks": [
3176
3182
  "gunnersQuadrant"
3177
3183
  ],
3178
- "obtainable": ["legacyCache3","legacyCache1"],
3184
+ "obtainable": ["legacyCache3","legacyCache1","legacyCache4"],
3179
3185
  "dateAdded": "2024-02-05",
3180
3186
  "lastUpdated": "2025-09-04"
3181
3187
  },
@@ -6182,7 +6188,8 @@
6182
6188
  "flooding": 0.25,
6183
6189
  "fire": 0,
6184
6190
  "tearing": 0,
6185
- "piercing": 0.25
6191
+ "piercing": 0.25,
6192
+ "electric": 0.25
6186
6193
  },
6187
6194
  "required": {
6188
6195
  "roselleCloth": 8,
@@ -6196,7 +6203,7 @@
6196
6203
  "crescendo"
6197
6204
  ],
6198
6205
  "dateAdded": "2024-05-26",
6199
- "lastUpdated": "2025-09-04"
6206
+ "lastUpdated": "2025-10-21"
6200
6207
  },
6201
6208
  "buccaneersOath": {
6202
6209
  "id": "buccaneersOath",
@@ -6213,7 +6220,8 @@
6213
6220
  "flooding": 0.15,
6214
6221
  "fire": 0.2,
6215
6222
  "tearing": 0,
6216
- "piercing": 0.2
6223
+ "piercing": 0.2,
6224
+ "electric": 0.15
6217
6225
  },
6218
6226
  "required": {
6219
6227
  "lacquer": 6,
@@ -6228,7 +6236,7 @@
6228
6236
  ],
6229
6237
  "obtainable": ["legacyCache3","legacyCache1"],
6230
6238
  "dateAdded": "2024-05-26",
6231
- "lastUpdated": "2025-09-04"
6239
+ "lastUpdated": "2025-10-21"
6232
6240
  },
6233
6241
  "dummySpringloader1": {
6234
6242
  "id": "dummySpringloader1",
@@ -6606,7 +6614,7 @@
6606
6614
  "gearScore": 297,
6607
6615
  "armor": 1150,
6608
6616
  "damageMitigation": {
6609
- "explosive": 0,
6617
+ "explosive": 0.2,
6610
6618
  "flooding": 0.23,
6611
6619
  "fire": 0.18,
6612
6620
  "tearing": 0,
@@ -6625,7 +6633,7 @@
6625
6633
  "impenetrable"
6626
6634
  ],
6627
6635
  "dateAdded": "2024-06-01",
6628
- "lastUpdated": "2025-07-29"
6636
+ "lastUpdated": "2025-10-21"
6629
6637
  },
6630
6638
  "buoyShellsCrate": {
6631
6639
  "id": "buoyShellsCrate",
@@ -6977,7 +6985,8 @@
6977
6985
  "flooding": 0.35,
6978
6986
  "fire": 0.2,
6979
6987
  "tearing": 0,
6980
- "piercing": 0
6988
+ "piercing": 0,
6989
+ "toxic": 0.18
6981
6990
  },
6982
6991
  "required": {
6983
6992
  "woodPitch": 6,
@@ -6992,7 +7001,7 @@
6992
7001
  "ironPlastron"
6993
7002
  ],
6994
7003
  "dateAdded": "2024-06-04",
6995
- "lastUpdated": "2025-08-17"
7004
+ "lastUpdated": "2025-10-21"
6996
7005
  },
6997
7006
  "cursedBanner": {
6998
7007
  "id": "cursedBanner",
@@ -7177,7 +7186,8 @@
7177
7186
  "flooding": 0.15,
7178
7187
  "fire": 0,
7179
7188
  "tearing": 0,
7180
- "piercing": 0.1
7189
+ "piercing": 0.1,
7190
+ "toxic": 0.05
7181
7191
  },
7182
7192
  "perks": [
7183
7193
  "bedarUpgrade6",
@@ -7345,7 +7355,8 @@
7345
7355
  "fire": 0.1,
7346
7356
  "tearing": 0,
7347
7357
  "piercing": 0.1,
7348
- "electric": 0.1
7358
+ "electric": 0.1,
7359
+ "toxic": 0.05
7349
7360
  },
7350
7361
  "perks": [
7351
7362
  "hulkUpgrade6",
@@ -7514,7 +7525,8 @@
7514
7525
  "fire": 0,
7515
7526
  "tearing": 0,
7516
7527
  "piercing": 0.1,
7517
- "electric": 0.1
7528
+ "electric": 0.1,
7529
+ "toxic": 0.05
7518
7530
  },
7519
7531
  "perks": [
7520
7532
  "cutterUpgrade6",
@@ -7678,12 +7690,13 @@
7678
7690
  "piecesOfEight": 8000
7679
7691
  },
7680
7692
  "damageMitigation": {
7681
- "explosive": 0,
7693
+ "explosive": 0.05,
7682
7694
  "flooding": 0.1,
7683
7695
  "fire": 0.15,
7684
7696
  "tearing": 0,
7685
7697
  "piercing": 0,
7686
- "electric": 0
7698
+ "electric": 0,
7699
+ "toxic": 0
7687
7700
  },
7688
7701
  "perks": [
7689
7702
  "bargeUpgrade6",
@@ -7852,7 +7865,8 @@
7852
7865
  "fire": 0,
7853
7866
  "tearing": 0,
7854
7867
  "piercing": 0.1,
7855
- "electric": 0
7868
+ "electric": 0.05,
7869
+ "toxic": 0
7856
7870
  },
7857
7871
  "perks": [
7858
7872
  "sloopUpgrade6",
@@ -8023,8 +8037,9 @@
8023
8037
  "flooding": 0,
8024
8038
  "fire": 0.1,
8025
8039
  "tearing": 0,
8026
- "piercing": 0,
8027
- "electric": 0
8040
+ "piercing": 0.05,
8041
+ "electric": 0,
8042
+ "toxic": 0
8028
8043
  },
8029
8044
  "perks": [
8030
8045
  "padewakangUpgrade6",
@@ -8197,7 +8212,8 @@
8197
8212
  "fire": 0.05,
8198
8213
  "tearing": 0,
8199
8214
  "piercing": 0.1,
8200
- "electric": 0.05
8215
+ "electric": 0.05,
8216
+ "toxic": 0.05
8201
8217
  },
8202
8218
  "perks": [
8203
8219
  "snowUpgrade6",
@@ -8365,12 +8381,13 @@
8365
8381
  "piecesOfEight": 10000
8366
8382
  },
8367
8383
  "damageMitigation": {
8368
- "explosive": 0,
8384
+ "explosive": 0.5,
8369
8385
  "flooding": 0.15,
8370
8386
  "fire": 0.1,
8371
8387
  "tearing": 0,
8372
8388
  "piercing": 0,
8373
- "electric": 0
8389
+ "electric": 0,
8390
+ "toxic": 0
8374
8391
  },
8375
8392
  "perks": [
8376
8393
  "brigantineUpgrade6",
@@ -8538,12 +8555,13 @@
8538
8555
  "piecesOfEight": 10000
8539
8556
  },
8540
8557
  "damageMitigation": {
8541
- "explosive": 0,
8558
+ "explosive": 0.05,
8542
8559
  "flooding": 0,
8543
8560
  "fire": 0.15,
8544
8561
  "tearing": 0,
8545
8562
  "piercing": 0,
8546
- "electric": 0.1
8563
+ "electric": 0.1,
8564
+ "toxic": 0
8547
8565
  },
8548
8566
  "perks": [
8549
8567
  "sambukUpgrade6",
@@ -8715,8 +8733,9 @@
8715
8733
  "flooding": 0,
8716
8734
  "fire": 0.1,
8717
8735
  "tearing": 0,
8718
- "piercing": 0,
8719
- "electric": 0.1
8736
+ "piercing": 0.05,
8737
+ "electric": 0.1,
8738
+ "toxic": 0
8720
8739
  },
8721
8740
  "perks": [
8722
8741
  "barqueUpgrade6",
@@ -8889,7 +8908,8 @@
8889
8908
  "fire": 0.1,
8890
8909
  "tearing": 0,
8891
8910
  "piercing": 0.1,
8892
- "electric": 0
8911
+ "electric": 0,
8912
+ "toxic": 0.05
8893
8913
  },
8894
8914
  "perks": [
8895
8915
  "brigUpgrade6",
@@ -9539,23 +9559,22 @@
9539
9559
  "reloadSpeed": 6000,
9540
9560
  "optimalRange": 600,
9541
9561
  "projectileSpeed": 210,
9542
- "required": {
9543
- "sovereigns": 350
9544
- },
9545
- "obtainable": ["theHelmSeasonal","legacyCache3"],
9562
+ "required": {},
9563
+ "obtainable": ["legacyCache3","legacyCache4"],
9546
9564
  "perks": [
9547
9565
  "sharedSupply",
9548
9566
  "repair2"
9549
9567
  ],
9550
9568
  "dateAdded": "2024-08-22",
9551
- "lastUpdated": "2025-09-04"
9569
+ "lastUpdated": "2025-10-21"
9552
9570
  },
9553
9571
  "thousandYearMonsoon": {
9554
9572
  "id": "thousandYearMonsoon",
9555
9573
  "type": "bombard",
9556
9574
  "rarity": "epic",
9557
9575
  "season": "intoTheDragonsWake",
9558
- "obtainable": "theHelmSeasonal",
9576
+ "obtainable": "legacyCache4",
9577
+ "blueprint": "theHelmSeasonGutsAndGlory",
9559
9578
  "value": 1,
9560
9579
  "weight": 500,
9561
9580
  "gearScore": 91,
@@ -9567,7 +9586,11 @@
9567
9586
  "projectileSpeed": 135,
9568
9587
  "blastRadius": 33,
9569
9588
  "required": {
9570
- "sovereigns": 350
9589
+ "dryCastingSand": 16,
9590
+ "naphtha": 10,
9591
+ "eelSturdyRopes": 1,
9592
+ "wyrmVolatileNapalm": 1,
9593
+ "silver": 3630
9571
9594
  },
9572
9595
  "perks": [
9573
9596
  "deluge",
@@ -9575,14 +9598,14 @@
9575
9598
  "explosive1"
9576
9599
  ],
9577
9600
  "dateAdded": "2024-08-22",
9578
- "lastUpdated": "2025-07-29"
9601
+ "lastUpdated": "2025-10-21"
9579
9602
  },
9580
9603
  "crouchingTiger": {
9581
9604
  "id": "crouchingTiger",
9582
9605
  "type": "mortar",
9583
9606
  "rarity": "epic",
9584
9607
  "season": "intoTheDragonsWake",
9585
- "obtainable": ["theHelmSeasonal","legacyCache3"],
9608
+ "obtainable": ["legacyCache3"],
9586
9609
  "value": 1,
9587
9610
  "weight": 1000,
9588
9611
  "gearScore": 91,
@@ -9593,9 +9616,7 @@
9593
9616
  "optimalRange": 600,
9594
9617
  "timeToTarget": 5750,
9595
9618
  "blastRadius": 50,
9596
- "required": {
9597
- "sovereigns": 450
9598
- },
9619
+ "required": {},
9599
9620
  "perks": [
9600
9621
  "taunting",
9601
9622
  "blast",
@@ -9603,7 +9624,7 @@
9603
9624
  "noDefaultCrit"
9604
9625
  ],
9605
9626
  "dateAdded": "2024-08-22",
9606
- "lastUpdated": "2025-09-04"
9627
+ "lastUpdated": "2025-10-21"
9607
9628
  },
9608
9629
  "spitefulSpikesStation": {
9609
9630
  "id": "spitefulSpikesStation",
@@ -9613,15 +9634,13 @@
9613
9634
  "value": 1,
9614
9635
  "weight": 250,
9615
9636
  "gearScore": 35,
9616
- "required": {
9617
- "sovereigns": 400
9618
- },
9619
- "obtainable": ["theHelmSeasonal","legacyCache3"],
9637
+ "required": {},
9638
+ "obtainable": ["legacyCache3"],
9620
9639
  "perks": [
9621
9640
  "spitefulSpikesStation"
9622
9641
  ],
9623
9642
  "dateAdded": "2024-08-22",
9624
- "lastUpdated": "2025-09-04"
9643
+ "lastUpdated": "2025-10-21"
9625
9644
  },
9626
9645
  "emergencySails": {
9627
9646
  "id": "emergencySails",
@@ -9632,20 +9651,27 @@
9632
9651
  "weight": 80,
9633
9652
  "gearScore": 20,
9634
9653
  "required": {
9635
- "sovereigns": 300
9654
+ "roselleCloth": 12,
9655
+ "greenheartPlank": 12,
9656
+ "azureDragonHead": 6,
9657
+ "yellowDragonBanner": 4,
9658
+ "eelSturdyRopes": 1,
9659
+ "wyrmVolatileNapalm": 1,
9660
+ "silver": 3600
9636
9661
  },
9637
- "obtainable": "theHelmSeasonal",
9662
+ "blueprint": "theHelmSeasonGutsAndGlory",
9663
+ "obtainable": "legacyCache4",
9638
9664
  "perks": [
9639
9665
  "emergencySails"
9640
9666
  ],
9641
9667
  "dateAdded": "2024-08-22",
9642
- "lastUpdated": "2025-07-29"
9668
+ "lastUpdated": "2025-10-21"
9643
9669
  },
9644
9670
  "celestialDance": {
9645
9671
  "id": "celestialDance",
9646
9672
  "rarity": "epic",
9647
9673
  "season": "intoTheDragonsWake",
9648
- "obtainable": ["theHelmSeasonal","legacyCache3","legacyCache1"],
9674
+ "obtainable": ["legacyCache3","legacyCache1"],
9649
9675
  "type": "armor",
9650
9676
  "value": 1,
9651
9677
  "weight": 500,
@@ -9657,16 +9683,15 @@
9657
9683
  "fire": 0.05,
9658
9684
  "tearing": 0,
9659
9685
  "piercing": 0.2,
9660
- "electric": 0.2
9661
- },
9662
- "required": {
9663
- "sovereigns": 600
9686
+ "electric": 0.2,
9687
+ "toxic": 0.05
9664
9688
  },
9689
+ "required": {},
9665
9690
  "perks": [
9666
9691
  "lightningStream"
9667
9692
  ],
9668
9693
  "dateAdded": "2024-08-22",
9669
- "lastUpdated": "2025-09-04"
9694
+ "lastUpdated": "2025-10-21"
9670
9695
  },
9671
9696
  "hongYiPao": {
9672
9697
  "id": "hongYiPao",
@@ -9837,7 +9862,8 @@
9837
9862
  "fire": 0.35,
9838
9863
  "tearing": 0,
9839
9864
  "piercing": 0.1,
9840
- "electric": 0.05
9865
+ "electric": 0.05,
9866
+ "toxic": 0.1
9841
9867
  },
9842
9868
  "required": {
9843
9869
  "phoenixPinion": 8,
@@ -9865,7 +9891,7 @@
9865
9891
  "gloat"
9866
9892
  ],
9867
9893
  "dateAdded": "2024-08-22",
9868
- "lastUpdated": "2025-07-29"
9894
+ "lastUpdated": "2025-10-21"
9869
9895
  },
9870
9896
  "organHarvestingStation": {
9871
9897
  "id": "organHarvestingStation",
@@ -10216,7 +10242,8 @@
10216
10242
  "fire": 0.22,
10217
10243
  "tearing": 0,
10218
10244
  "piercing": 0.17,
10219
- "electric": 0.09
10245
+ "electric": 0.09,
10246
+ "toxic": 0.09
10220
10247
  },
10221
10248
  "required": {},
10222
10249
  "obtainable": ["smugglerPass","williamBlackwoodRotatingStore","teulingsWeaponChest1"],
@@ -10224,7 +10251,7 @@
10224
10251
  "indomitable"
10225
10252
  ],
10226
10253
  "dateAdded": "2024-08-22",
10227
- "lastUpdated": "2025-08-17"
10254
+ "lastUpdated": "2025-10-21"
10228
10255
  },
10229
10256
  "voltasWard": {
10230
10257
  "id": "voltasWard",
@@ -10424,7 +10451,8 @@
10424
10451
  "fire": 0.05,
10425
10452
  "tearing": 0,
10426
10453
  "piercing": 0.05,
10427
- "electric": 0.1
10454
+ "electric": 0.1,
10455
+ "toxic": 0.05
10428
10456
  },
10429
10457
  "perks": [
10430
10458
  "battleJunkUpgrade6",
@@ -10774,7 +10802,8 @@
10774
10802
  "fire": 0,
10775
10803
  "tearing": 0,
10776
10804
  "piercing": 0.15,
10777
- "electric": 0
10805
+ "electric": 0.05,
10806
+ "toxic": 0
10778
10807
  },
10779
10808
  "perks": [
10780
10809
  "garudaUpgrade6",
@@ -10848,7 +10877,7 @@
10848
10877
  "type": "seaFire",
10849
10878
  "rarity": "epic",
10850
10879
  "season": "shadowsOfTheDeep",
10851
- "obtainable": "theHelmSeasonal",
10880
+ "obtainable": "williamBlackwoodRotatingStore",
10852
10881
  "value": 1,
10853
10882
  "weight": 750,
10854
10883
  "gearScore": 91,
@@ -10859,16 +10888,14 @@
10859
10888
  "reloadSpeed": 11000,
10860
10889
  "projectileSpeed": 1,
10861
10890
  "optimalRange": 250,
10862
- "required": {
10863
- "sovereigns": 350
10864
- },
10891
+ "required": {},
10865
10892
  "perks": [
10866
10893
  "pneumaticEngine",
10867
10894
  "piercing2",
10868
10895
  "burning1"
10869
10896
  ],
10870
10897
  "dateAdded": "2024-11-19",
10871
- "lastUpdated": "2025-07-29"
10898
+ "lastUpdated": "2025-10-21"
10872
10899
  },
10873
10900
  "eyeOfHeaven": {
10874
10901
  "id": "eyeOfHeaven",
@@ -10940,7 +10967,7 @@
10940
10967
  "id": "crimsonLotus",
10941
10968
  "rarity": "epic",
10942
10969
  "season": "shadowsOfTheDeep",
10943
- "obtainable": "theHelmSeasonal",
10970
+ "obtainable": "williamBlackwoodRotatingStore",
10944
10971
  "type": "armor",
10945
10972
  "value": 1,
10946
10973
  "weight": 500,
@@ -10952,16 +10979,15 @@
10952
10979
  "fire": 0.07,
10953
10980
  "tearing": 0,
10954
10981
  "piercing": 0.27,
10955
- "electric": 0.05
10956
- },
10957
- "required": {
10958
- "sovereigns": 600
10982
+ "electric": 0.05,
10983
+ "toxic": 0.17
10959
10984
  },
10985
+ "required": {},
10960
10986
  "perks": [
10961
10987
  "rally"
10962
10988
  ],
10963
10989
  "dateAdded": "2024-11-19",
10964
- "lastUpdated": "2025-07-29"
10990
+ "lastUpdated": "2025-10-21"
10965
10991
  },
10966
10992
  "pishacha": {
10967
10993
  "id": "pishacha",
@@ -10981,7 +11007,8 @@
10981
11007
  "fire": 0.05,
10982
11008
  "tearing": 0,
10983
11009
  "piercing": 0.25,
10984
- "electric": 0.15
11010
+ "electric": 0.15,
11011
+ "toxic": 0.1
10985
11012
  },
10986
11013
  "required": {
10987
11014
  "roselleCloth": 12,
@@ -10995,7 +11022,7 @@
10995
11022
  "phantasmicThrust"
10996
11023
  ],
10997
11024
  "dateAdded": "2024-11-19",
10998
- "lastUpdated": "2025-09-04"
11025
+ "lastUpdated": "2025-10-21"
10999
11026
  },
11000
11027
  "tanashah": {
11001
11028
  "id": "tanashah",
@@ -11013,7 +11040,8 @@
11013
11040
  "fire": 0.15,
11014
11041
  "tearing": 0,
11015
11042
  "piercing": 0.2,
11016
- "electric": 0.1
11043
+ "electric": 0.1,
11044
+ "toxic": 0.1
11017
11045
  },
11018
11046
  "required": {},
11019
11047
  "perks": [
@@ -11021,7 +11049,7 @@
11021
11049
  "reinforced"
11022
11050
  ],
11023
11051
  "dateAdded": "2024-11-19",
11024
- "lastUpdated": "2025-08-17"
11052
+ "lastUpdated": "2025-10-21"
11025
11053
  },
11026
11054
  "painPiper": {
11027
11055
  "id": "painPiper",
@@ -11088,15 +11116,13 @@
11088
11116
  "value": 1,
11089
11117
  "weight": 250,
11090
11118
  "gearScore": 35,
11091
- "required": {
11092
- "sovereigns": 400
11093
- },
11094
- "obtainable": "theHelmSeasonal",
11119
+ "required": {},
11120
+ "obtainable": "williamBlackwoodRotatingStore",
11095
11121
  "perks": [
11096
11122
  "chainedLinks"
11097
11123
  ],
11098
11124
  "dateAdded": "2024-11-19",
11099
- "lastUpdated": "2025-07-29"
11125
+ "lastUpdated": "2025-10-21"
11100
11126
  },
11101
11127
  "teulingsGuidance": {
11102
11128
  "id": "teulingsGuidance",
@@ -11189,12 +11215,10 @@
11189
11215
  "perks": [
11190
11216
  "mineClearingLocker"
11191
11217
  ],
11192
- "required": {
11193
- "sovereigns": 300
11194
- },
11195
- "obtainable": "theHelmSeasonal",
11218
+ "required": {},
11219
+ "obtainable": "williamBlackwoodRotatingStore",
11196
11220
  "dateAdded": "2024-11-19",
11197
- "lastUpdated": "2025-07-29"
11221
+ "lastUpdated": "2025-10-21"
11198
11222
  },
11199
11223
  "devilsConcoction": {
11200
11224
  "id": "devilsConcoction",
@@ -11785,7 +11809,8 @@
11785
11809
  "fire": 0,
11786
11810
  "tearing": 0,
11787
11811
  "piercing": 0,
11788
- "electric": 0.1
11812
+ "electric": 0.1,
11813
+ "toxic": 0.05
11789
11814
  },
11790
11815
  "perks": [
11791
11816
  "schoonerUpgrade6",
@@ -11861,7 +11886,7 @@
11861
11886
  "gearScore": 297,
11862
11887
  "armor": 1210,
11863
11888
  "damageMitigation": {
11864
- "explosive": 0,
11889
+ "explosive": 0.25,
11865
11890
  "flooding": 0.1,
11866
11891
  "fire": 0.4,
11867
11892
  "tearing": 0,
@@ -11877,7 +11902,7 @@
11877
11902
  "emberWard"
11878
11903
  ],
11879
11904
  "dateAdded": "2025-04-15",
11880
- "lastUpdated": "2025-07-29"
11905
+ "lastUpdated": "2025-10-21"
11881
11906
  },
11882
11907
  "nocturneHeart": {
11883
11908
  "id": "nocturneHeart",
@@ -11894,7 +11919,8 @@
11894
11919
  "fire": 0.2,
11895
11920
  "tearing": 0,
11896
11921
  "piercing": 0.1,
11897
- "electric": 0.2
11922
+ "electric": 0.2,
11923
+ "toxic": 0.1
11898
11924
  },
11899
11925
  "required": {
11900
11926
  "woodPitch": 10,
@@ -11910,7 +11936,7 @@
11910
11936
  "euphoria"
11911
11937
  ],
11912
11938
  "dateAdded": "2025-04-15",
11913
- "lastUpdated": "2025-07-29"
11939
+ "lastUpdated": "2025-10-21"
11914
11940
  },
11915
11941
  "silverSentinel": {
11916
11942
  "id": "silverSentinel",
@@ -11927,7 +11953,8 @@
11927
11953
  "fire": 0.1,
11928
11954
  "tearing": 0,
11929
11955
  "piercing": 0.2,
11930
- "electric": 0.1
11956
+ "electric": 0.1,
11957
+ "toxic": 0.1
11931
11958
  },
11932
11959
  "required": {},
11933
11960
  "obtainable": "smugglerPass",
@@ -11935,7 +11962,7 @@
11935
11962
  "vigilance"
11936
11963
  ],
11937
11964
  "dateAdded": "2025-04-15",
11938
- "lastUpdated": "2025-07-29"
11965
+ "lastUpdated": "2025-10-21"
11939
11966
  },
11940
11967
  "floodingBombard1": {
11941
11968
  "id": "floodingBombard1",
@@ -13424,9 +13451,9 @@
13424
13451
  "tier": 4,
13425
13452
  "value": 1,
13426
13453
  "weight": 100,
13427
- "obtainable": "deathTidesProgression",
13454
+ "obtainable": ["deathTidesProgression","theHelm"],
13428
13455
  "dateAdded": "2025-05-27",
13429
- "lastUpdated": "2025-07-29"
13456
+ "lastUpdated": "2025-10-21"
13430
13457
  },
13431
13458
  "mutuallyAssuredSetChest": {
13432
13459
  "id": "mutuallyAssuredSetChest",
@@ -13861,7 +13888,8 @@
13861
13888
  "fire": 0.05,
13862
13889
  "tearing": 0,
13863
13890
  "piercing": 0.1,
13864
- "electric": 0.35
13891
+ "electric": 0.35,
13892
+ "toxic": 0.05
13865
13893
  },
13866
13894
  "obtainable": "smugglerPass",
13867
13895
  "perks": [
@@ -13869,7 +13897,7 @@
13869
13897
  "bastion"
13870
13898
  ],
13871
13899
  "dateAdded": "2025-07-15",
13872
- "lastUpdated": "2025-07-29"
13900
+ "lastUpdated": "2025-10-21"
13873
13901
  },
13874
13902
  "novaArma": {
13875
13903
  "id": "novaArma",
@@ -13881,7 +13909,7 @@
13881
13909
  "gearScore": 297,
13882
13910
  "armor": 1150,
13883
13911
  "damageMitigation": {
13884
- "explosive": 0.15,
13912
+ "explosive": 0.30,
13885
13913
  "flooding": 0.2,
13886
13914
  "fire": 0.15,
13887
13915
  "tearing": 0,
@@ -13896,7 +13924,7 @@
13896
13924
  "volatileVestment"
13897
13925
  ],
13898
13926
  "dateAdded": "2025-07-15",
13899
- "lastUpdated": "2025-07-29"
13927
+ "lastUpdated": "2025-10-21"
13900
13928
  },
13901
13929
  "trunnionFurnace": {
13902
13930
  "id": "trunnionFurnace",
@@ -14616,5 +14644,521 @@
14616
14644
  "weight": 100,
14617
14645
  "dateAdded": "2025-09-30",
14618
14646
  "lastUpdated": "2025-09-30"
14647
+ },
14648
+ "tondraDra": {
14649
+ "id": "tondraDra",
14650
+ "rarity": "epic",
14651
+ "season": "gutsAndGlory",
14652
+ "type": "armor",
14653
+ "value": 1,
14654
+ "weight": 500,
14655
+ "gearScore": 297,
14656
+ "armor": 1200,
14657
+ "damageMitigation": {
14658
+ "explosive": 0.1,
14659
+ "flooding": 0.25,
14660
+ "fire": 0.4,
14661
+ "tearing": 0,
14662
+ "piercing": 0.2,
14663
+ "electric": 0.25,
14664
+ "toxic": 0
14665
+ },
14666
+ "obtainable": "williamBlackwoodSeasonalItemGutsAndGlory",
14667
+ "perks": [
14668
+ "resurgence"
14669
+ ],
14670
+ "dateAdded": "2025-10-21",
14671
+ "lastUpdated": "2025-10-21"
14672
+ },
14673
+ "rivotrasGrace": {
14674
+ "id": "rivotrasGrace",
14675
+ "rarity": "epic",
14676
+ "season": "gutsAndGlory",
14677
+ "type": "armor",
14678
+ "value": 1,
14679
+ "weight": 500,
14680
+ "gearScore": 297,
14681
+ "armor": 1100,
14682
+ "damageMitigation": {
14683
+ "explosive": 0.05,
14684
+ "flooding": 0.4,
14685
+ "fire": 0.25,
14686
+ "tearing": 0.45,
14687
+ "piercing": 0.1,
14688
+ "electric": 0,
14689
+ "toxic": 0
14690
+ },
14691
+ "obtainable": "smugglerPass",
14692
+ "perks": [
14693
+ "windcaller"
14694
+ ],
14695
+ "dateAdded": "2025-10-21",
14696
+ "lastUpdated": "2025-10-21"
14697
+ },
14698
+ "sumuSunder": {
14699
+ "id": "sumuSunder",
14700
+ "rarity": "epic",
14701
+ "season": "gutsAndGlory",
14702
+ "type": "armor",
14703
+ "value": 1,
14704
+ "weight": 500,
14705
+ "gearScore": 270,
14706
+ "armor": 1250,
14707
+ "damageMitigation": {
14708
+ "explosive": 0.05,
14709
+ "flooding": 0.28,
14710
+ "fire": 0.25,
14711
+ "tearing": 0,
14712
+ "piercing": 0,
14713
+ "electric": 0.1,
14714
+ "toxic": 0.4
14715
+ },
14716
+ "obtainable": "williamBlackwoodSeasonalItemGutsAndGlory",
14717
+ "perks": [
14718
+ "immunity"
14719
+ ],
14720
+ "dateAdded": "2025-10-21",
14721
+ "lastUpdated": "2025-10-21"
14722
+ },
14723
+ "stinkpotStation": {
14724
+ "id": "stinkpotStation",
14725
+ "type": "majorFurniture",
14726
+ "rarity": "epic",
14727
+ "season": "gutsAndGlory",
14728
+ "value": 1,
14729
+ "weight": 250,
14730
+ "gearScore": 35,
14731
+ "obtainable": "williamBlackwoodSeasonalItemGutsAndGlory",
14732
+ "perks": [
14733
+ "stinkpotStation"
14734
+ ],
14735
+ "dateAdded": "2025-10-21",
14736
+ "lastUpdated": "2025-10-21"
14737
+ },
14738
+ "sheetingWinchConsole": {
14739
+ "id": "sheetingWinchConsole",
14740
+ "type": "majorFurniture",
14741
+ "rarity": "epic",
14742
+ "season": "gutsAndGlory",
14743
+ "event": "azureSolstice",
14744
+ "value": 1,
14745
+ "weight": 250,
14746
+ "gearScore": 35,
14747
+ "obtainable": "azureStrongbox",
14748
+ "perks": [
14749
+ "sheetingWinchConsole"
14750
+ ],
14751
+ "dateAdded": "2025-10-21",
14752
+ "lastUpdated": "2025-10-21"
14753
+ },
14754
+ "gimbalRingStores": {
14755
+ "id": "gimbalRingStores",
14756
+ "type": "majorFurniture",
14757
+ "rarity": "epic",
14758
+ "season": "gutsAndGlory",
14759
+ "value": 1,
14760
+ "weight": 250,
14761
+ "gearScore": 35,
14762
+ "obtainable": "williamBlackwoodSeasonalItemGutsAndGlory",
14763
+ "perks": [
14764
+ "gimbalRingStores"
14765
+ ],
14766
+ "dateAdded": "2025-10-21",
14767
+ "lastUpdated": "2025-10-21"
14768
+ },
14769
+ "siphonFurnace": {
14770
+ "id": "siphonFurnace",
14771
+ "type": "majorFurniture",
14772
+ "rarity": "epic",
14773
+ "season": "gutsAndGlory",
14774
+ "value": 1,
14775
+ "weight": 250,
14776
+ "gearScore": 35,
14777
+ "obtainable": "smugglerPass",
14778
+ "perks": [
14779
+ "siphonFurnace"
14780
+ ],
14781
+ "dateAdded": "2025-10-21",
14782
+ "lastUpdated": "2025-10-21"
14783
+ },
14784
+ "causticSpallStation": {
14785
+ "id": "causticSpallStation",
14786
+ "rarity": "epic",
14787
+ "season": "gutsAndGlory",
14788
+ "type": "offensiveFurniture",
14789
+ "event": "requiemOfTheLost",
14790
+ "gearScore": 25,
14791
+ "value": 1,
14792
+ "weight": 80,
14793
+ "obtainable": "hallowedGravestoneSaintAnne",
14794
+ "perks": [
14795
+ "causticSpallStation"
14796
+ ],
14797
+ "dateAdded": "2025-10-21",
14798
+ "lastUpdated": "2025-10-21"
14799
+ },
14800
+ "leydenVaultArray": {
14801
+ "id": "leydenVaultArray",
14802
+ "rarity": "epic",
14803
+ "season": "gutsAndGlory",
14804
+ "type": "offensiveFurniture",
14805
+ "gearScore": 25,
14806
+ "value": 1,
14807
+ "weight": 80,
14808
+ "obtainable": "factionWarEffortReward",
14809
+ "perks": [
14810
+ "leydenVaultArray"
14811
+ ],
14812
+ "dateAdded": "2025-10-21",
14813
+ "lastUpdated": "2025-10-21"
14814
+ },
14815
+ "cascadeCoilBench": {
14816
+ "id": "cascadeCoilBench",
14817
+ "rarity": "rare",
14818
+ "season": "gutsAndGlory",
14819
+ "type": "offensiveFurniture",
14820
+ "gearScore": 20,
14821
+ "value": 1,
14822
+ "weight": 80,
14823
+ "obtainable": "factionWarEffortReward",
14824
+ "perks": [
14825
+ "cascadeCoilBench"
14826
+ ],
14827
+ "dateAdded": "2025-10-21",
14828
+ "lastUpdated": "2025-10-21"
14829
+ },
14830
+ "curareCrushingBench": {
14831
+ "id": "curareCrushingBench",
14832
+ "rarity": "rare",
14833
+ "season": "gutsAndGlory",
14834
+ "type": "offensiveFurniture",
14835
+ "gearScore": 20,
14836
+ "value": 1,
14837
+ "weight": 80,
14838
+ "obtainable": "factionWarEffortReward",
14839
+ "perks": [
14840
+ "curareCrushingBench"
14841
+ ],
14842
+ "dateAdded": "2025-10-21",
14843
+ "lastUpdated": "2025-10-21"
14844
+ },
14845
+ "virulentAccord": {
14846
+ "id": "virulentAccord",
14847
+ "type": "seaFire",
14848
+ "rarity": "epic",
14849
+ "season": "gutsAndGlory",
14850
+ "requiredSize": "medium",
14851
+ "value": 1,
14852
+ "weight": 750,
14853
+ "gearScore": 91,
14854
+ "projectilesPerShot": 10,
14855
+ "damagePerShot": 475,
14856
+ "fireDuration": 1000,
14857
+ "rateOfFire": 250,
14858
+ "reloadSpeed": 400,
14859
+ "projectileSpeed": 1,
14860
+ "optimalRange": 125,
14861
+ "perks": [
14862
+ "infectious",
14863
+ "toxic3"
14864
+ ],
14865
+ "obtainable": "factionWarEffortReward",
14866
+ "dateAdded": "2025-10-21",
14867
+ "lastUpdated": "2025-10-21"
14868
+ },
14869
+ "heavenlyThunder": {
14870
+ "id": "heavenlyThunder",
14871
+ "type": "seaFire",
14872
+ "rarity": "epic",
14873
+ "season": "gutsAndGlory",
14874
+ "requiredSize": "medium",
14875
+ "value": 1,
14876
+ "weight": 750,
14877
+ "gearScore": 91,
14878
+ "projectilesPerShot": 10,
14879
+ "damagePerShot": 594,
14880
+ "fireDuration": 1000,
14881
+ "rateOfFire": 250,
14882
+ "reloadSpeed": 400,
14883
+ "projectileSpeed": 1,
14884
+ "optimalRange": 200,
14885
+ "obtainable": "factionWarEffortReward",
14886
+ "perks": [
14887
+ "lancerSeaFire",
14888
+ "electric4"
14889
+ ],
14890
+ "dateAdded": "2025-10-21",
14891
+ "lastUpdated": "2025-10-21"
14892
+ },
14893
+ "theRotmouth": {
14894
+ "id": "theRotmouth",
14895
+ "type": "culverin",
14896
+ "rarity": "epic",
14897
+ "season": "gutsAndGlory",
14898
+ "obtainable": ["smugglerPass","smugglerPassPinnacleStore"],
14899
+ "value": 1,
14900
+ "weight": 500,
14901
+ "gearScore": 91,
14902
+ "projectilesPerShot": 1,
14903
+ "damagePerShot": 1307,
14904
+ "rateOfFire": 150,
14905
+ "reloadSpeed": 6000,
14906
+ "optimalRange": 600,
14907
+ "projectileSpeed": 210,
14908
+ "perks": [
14909
+ "virulent",
14910
+ "toxic3"
14911
+ ],
14912
+ "dateAdded": "2025-10-21",
14913
+ "lastUpdated": "2025-10-21"
14914
+ },
14915
+ "blightbringer": {
14916
+ "id": "blightbringer",
14917
+ "type": "torpedo",
14918
+ "rarity": "epic",
14919
+ "season": "gutsAndGlory",
14920
+ "obtainable": "williamBlackwoodSeasonalItemGutsAndGlory",
14921
+ "value": 1,
14922
+ "weight": 500,
14923
+ "gearScore": 91,
14924
+ "projectilesPerShot": 1,
14925
+ "damagePerShot": 1266,
14926
+ "rateOfFire": 0,
14927
+ "reloadSpeed": 4500,
14928
+ "optimalRange": 675,
14929
+ "projectileSpeed": 75,
14930
+ "perks": [
14931
+ "contagion",
14932
+ "arming",
14933
+ "flooding2",
14934
+ "toxic3"
14935
+ ],
14936
+ "dateAdded": "2025-10-21",
14937
+ "lastUpdated": "2025-10-21"
14938
+ },
14939
+ "theDrownedOne": {
14940
+ "id": "theDrownedOne",
14941
+ "type": "longGun",
14942
+ "rarity": "epic",
14943
+ "season": "gutsAndGlory",
14944
+ "event": "requiemOfTheLost",
14945
+ "obtainable": "hallowedGravestoneSaintAnne",
14946
+ "value": 1,
14947
+ "weight": 500,
14948
+ "gearScore": 91,
14949
+ "projectilesPerShot": 1,
14950
+ "damagePerShot": 2255,
14951
+ "rateOfFire": 600,
14952
+ "reloadSpeed": 7200,
14953
+ "optimalRange": 1000,
14954
+ "projectileSpeed": 350,
14955
+ "perks": [
14956
+ "perforator",
14957
+ "flooding2",
14958
+ "piercing2"
14959
+ ],
14960
+ "dateAdded": "2025-10-21",
14961
+ "lastUpdated": "2025-10-21"
14962
+ },
14963
+ "frostwail": {
14964
+ "id": "frostwail",
14965
+ "type": "bombard",
14966
+ "rarity": "epic",
14967
+ "season": "gutsAndGlory",
14968
+ "event": "azureSolstice",
14969
+ "obtainable": "azuriteLodestoneSaintAnne",
14970
+ "value": 1,
14971
+ "weight": 500,
14972
+ "gearScore": 91,
14973
+ "projectilesPerShot": 1,
14974
+ "damagePerShot": 3321,
14975
+ "rateOfFire": 600,
14976
+ "reloadSpeed": 7500,
14977
+ "optimalRange": 550,
14978
+ "projectileSpeed": 135,
14979
+ "blastRadius": 35,
14980
+ "perks": [
14981
+ "countdown",
14982
+ "explosive2"
14983
+ ],
14984
+ "dateAdded": "2025-10-21",
14985
+ "lastUpdated": "2025-10-21"
14986
+ },
14987
+ "sloopOfWarUpgrade1": {
14988
+ "id": "sloopOfWarUpgrade1",
14989
+ "type": "shipUpgrade",
14990
+ "season": "gutsAndGlory",
14991
+ "tier": 1,
14992
+ "value": 1,
14993
+ "required": {
14994
+ "silver": 18000,
14995
+ "juniperPlank": 7,
14996
+ "plagueDust": 3,
14997
+ "upgradeParts": 2
14998
+ },
14999
+ "perks": [
15000
+ "sloopOfWarUpgrade1"
15001
+ ],
15002
+ "dateAdded": "2025-10-21",
15003
+ "lastUpdated": "2025-10-21"
15004
+ },
15005
+ "sloopOfWarUpgrade2": {
15006
+ "id": "sloopOfWarUpgrade2",
15007
+ "type": "shipUpgrade",
15008
+ "season": "gutsAndGlory",
15009
+ "tier": 2,
15010
+ "value": 1,
15011
+ "required": {
15012
+ "silver": 25000,
15013
+ "juniperPlank": 10,
15014
+ "plagueDust": 5,
15015
+ "deepIron": 3,
15016
+ "upgradeParts": 3
15017
+ },
15018
+ "perks": [
15019
+ "sloopOfWarUpgrade2"
15020
+ ],
15021
+ "dateAdded": "2025-10-21",
15022
+ "lastUpdated": "2025-10-21"
15023
+ },
15024
+ "sloopOfWarUpgrade3": {
15025
+ "id": "sloopOfWarUpgrade3",
15026
+ "type": "shipUpgrade",
15027
+ "season": "gutsAndGlory",
15028
+ "tier": 3,
15029
+ "value": 1,
15030
+ "required": {
15031
+ "piecesOfEight": 1250,
15032
+ "juniperPlank": 15,
15033
+ "blightedFuel": 5,
15034
+ "deepIron": 5,
15035
+ "upgradeParts": 4
15036
+ },
15037
+ "perks": [
15038
+ "sloopOfWarUpgrade3",
15039
+ "deepBlue"
15040
+ ],
15041
+ "dateAdded": "2025-10-21",
15042
+ "lastUpdated": "2025-10-21"
15043
+ },
15044
+ "sloopOfWarUpgrade4": {
15045
+ "id": "sloopOfWarUpgrade4",
15046
+ "type": "shipUpgrade",
15047
+ "season": "gutsAndGlory",
15048
+ "tier": 4,
15049
+ "value": 1,
15050
+ "required": {
15051
+ "piecesOfEight": 4000,
15052
+ "greenheartPlank": 15,
15053
+ "magnetiteIngot": 15,
15054
+ "plagueDust": 5,
15055
+ "deepIron": 5,
15056
+ "upgradeParts": 5
15057
+ },
15058
+ "damageMitigation": {
15059
+ "explosive": 0,
15060
+ "flooding": 0,
15061
+ "fire": 0,
15062
+ "tearing": 0,
15063
+ "piercing": 0.03,
15064
+ "electric": 0,
15065
+ "toxic": 0.03
15066
+ },
15067
+ "perks": [
15068
+ "sloopOfWarUpgrade4"
15069
+ ],
15070
+ "dateAdded": "2025-10-21",
15071
+ "lastUpdated": "2025-10-21"
15072
+ },
15073
+ "sloopOfWarUpgrade5": {
15074
+ "id": "sloopOfWarUpgrade5",
15075
+ "type": "shipUpgrade",
15076
+ "season": "gutsAndGlory",
15077
+ "tier": 5,
15078
+ "value": 1,
15079
+ "required": {
15080
+ "piecesOfEight": 6500,
15081
+ "plagueDust": 7,
15082
+ "deepIronPlates": 5,
15083
+ "blightedFuel": 5,
15084
+ "wyrmsBreath": 3,
15085
+ "upgradeParts": 5
15086
+ },
15087
+ "damageMitigation": {
15088
+ "explosive": 0,
15089
+ "flooding": 0,
15090
+ "fire": 0,
15091
+ "tearing": 0,
15092
+ "piercing": 0.05,
15093
+ "electric": 0,
15094
+ "toxic": 0.05
15095
+ },
15096
+ "perks": [
15097
+ "sloopOfWarUpgrade5"
15098
+ ],
15099
+ "dateAdded": "2025-10-21",
15100
+ "lastUpdated": "2025-10-21"
15101
+ },
15102
+ "sloopOfWarUpgrade6": {
15103
+ "id": "sloopOfWarUpgrade6",
15104
+ "type": "shipUpgrade",
15105
+ "season": "gutsAndGlory",
15106
+ "tier": 6,
15107
+ "value": 1,
15108
+ "required": {
15109
+ "piecesOfEight": 10000,
15110
+ "plagueDust": 10,
15111
+ "deepIronPlates": 5,
15112
+ "blightedFuel": 5,
15113
+ "eelsTwine": 3,
15114
+ "gannetsSaltpeter": 3,
15115
+ "upgradeParts": 6
15116
+ },
15117
+ "damageMitigation": {
15118
+ "explosive": 0,
15119
+ "flooding": 0.05,
15120
+ "fire": 0,
15121
+ "tearing": 0,
15122
+ "piercing": 0.1,
15123
+ "electric": 0,
15124
+ "toxic": 0.1
15125
+ },
15126
+ "perks": [
15127
+ "sloopOfWarUpgrade6",
15128
+ "spite"
15129
+ ],
15130
+ "dateAdded": "2025-10-21",
15131
+ "lastUpdated": "2025-10-21"
15132
+ },
15133
+ "sloopOfWarUpgrade7": {
15134
+ "id": "sloopOfWarUpgrade7",
15135
+ "type": "shipUpgrade",
15136
+ "season": "gutsAndGlory",
15137
+ "tier": 7,
15138
+ "value": 1,
15139
+ "required": {
15140
+ "piecesOfEight": 15000,
15141
+ "silver": 50000,
15142
+ "plagueDust": 6,
15143
+ "deepIronPlates": 5,
15144
+ "blightedFuel": 3,
15145
+ "wyrmVolatileNapalm": 2,
15146
+ "masterworkKit": 1,
15147
+ "upgradeParts": 12
15148
+ },
15149
+ "damageMitigation": {
15150
+ "explosive": 0,
15151
+ "flooding": 0.05,
15152
+ "fire": 0,
15153
+ "tearing": 0,
15154
+ "piercing": 0.15,
15155
+ "electric": 0,
15156
+ "toxic": 0.2
15157
+ },
15158
+ "perks": [
15159
+ "sloopOfWarUpgrade7"
15160
+ ],
15161
+ "dateAdded": "2025-10-21",
15162
+ "lastUpdated": "2025-10-21"
14619
15163
  }
14620
15164
  }