stardew-valley-data 0.29.0 → 0.31.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/CHANGELOG.md +25 -0
- package/data/bundles.json +4 -0
- package/data/fish.json +77 -0
- package/data/perfection.json +1 -1
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +86 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +86 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
|
|
6
6
|
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.31.0] - 2026-03-29
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- `FishCategory` type added
|
|
13
|
+
(`'regular' | 'crab-pot' | 'night-market' | 'legendary' | 'legendary-2' | 'other'`)
|
|
14
|
+
- `category: FishCategory` field added to all 77 entries in `data/fish.json`
|
|
15
|
+
- `byCategory(category: FishCategory)` filter method added to `FishQuery`
|
|
16
|
+
- Fish sample script updated to display per-category counts
|
|
17
|
+
- Fish tests updated to cover `byCategory()` across all 6 categories
|
|
18
|
+
|
|
19
|
+
### Fix
|
|
20
|
+
|
|
21
|
+
- Added missing Caviar item to the Abandoned Joja Mart bundle in `data/bundles.json`
|
|
22
|
+
|
|
23
|
+
### Chore
|
|
24
|
+
|
|
25
|
+
- Bump Dependency Versions
|
|
26
|
+
|
|
27
|
+
## [0.30.0] - 2026-03-24
|
|
28
|
+
|
|
29
|
+
### Fix
|
|
30
|
+
|
|
31
|
+
- Update Farmer Level count to math proper in Perfection Tracker data
|
|
32
|
+
|
|
8
33
|
## [0.29.0] - 2026-03-23
|
|
9
34
|
|
|
10
35
|
## Added
|
package/data/bundles.json
CHANGED
package/data/fish.json
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"name": "Pufferfish",
|
|
5
5
|
"description": "Inflates when threatened.",
|
|
6
6
|
"catchType": "rod",
|
|
7
|
+
"category": "regular",
|
|
7
8
|
"seasons": ["summer"],
|
|
8
9
|
"location": "Ocean, Ginger Island",
|
|
9
10
|
"weather": "sunny",
|
|
@@ -56,6 +57,7 @@
|
|
|
56
57
|
"name": "Anchovy",
|
|
57
58
|
"description": "A small silver fish found in the ocean.",
|
|
58
59
|
"catchType": "rod",
|
|
60
|
+
"category": "regular",
|
|
59
61
|
"seasons": ["spring", "fall"],
|
|
60
62
|
"location": "Ocean",
|
|
61
63
|
"weather": "both",
|
|
@@ -107,6 +109,7 @@
|
|
|
107
109
|
"name": "Tuna",
|
|
108
110
|
"description": "A large fish that lives in the ocean.",
|
|
109
111
|
"catchType": "rod",
|
|
112
|
+
"category": "regular",
|
|
110
113
|
"seasons": ["summer", "winter"],
|
|
111
114
|
"location": "Ocean, Ginger Island",
|
|
112
115
|
"weather": "both",
|
|
@@ -158,6 +161,7 @@
|
|
|
158
161
|
"name": "Sardine",
|
|
159
162
|
"description": "A common ocean fish.",
|
|
160
163
|
"catchType": "rod",
|
|
164
|
+
"category": "regular",
|
|
161
165
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
162
166
|
"location": "Ocean",
|
|
163
167
|
"weather": "both",
|
|
@@ -215,6 +219,7 @@
|
|
|
215
219
|
"name": "Bream",
|
|
216
220
|
"description": "A fairly common river fish that becomes active at night.",
|
|
217
221
|
"catchType": "rod",
|
|
222
|
+
"category": "regular",
|
|
218
223
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
219
224
|
"location": "River",
|
|
220
225
|
"weather": "both",
|
|
@@ -274,6 +279,7 @@
|
|
|
274
279
|
"name": "Largemouth Bass",
|
|
275
280
|
"description": "A popular fish that lives in lakes.",
|
|
276
281
|
"catchType": "rod",
|
|
282
|
+
"category": "regular",
|
|
277
283
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
278
284
|
"location": "Mountain Lake",
|
|
279
285
|
"weather": "both",
|
|
@@ -336,6 +342,7 @@
|
|
|
336
342
|
"name": "Smallmouth Bass",
|
|
337
343
|
"description": "A freshwater fish that is very sensitive to pollution.",
|
|
338
344
|
"catchType": "rod",
|
|
345
|
+
"category": "regular",
|
|
339
346
|
"seasons": ["spring", "fall"],
|
|
340
347
|
"location": "River, Forest Pond",
|
|
341
348
|
"weather": "both",
|
|
@@ -395,6 +402,7 @@
|
|
|
395
402
|
"name": "Rainbow Trout",
|
|
396
403
|
"description": "A freshwater trout with colorful markings.",
|
|
397
404
|
"catchType": "rod",
|
|
405
|
+
"category": "regular",
|
|
398
406
|
"seasons": ["summer"],
|
|
399
407
|
"location": "River, Mountain Lake",
|
|
400
408
|
"weather": "sunny",
|
|
@@ -434,6 +442,7 @@
|
|
|
434
442
|
"name": "Salmon",
|
|
435
443
|
"description": "Swims upstream to lay its eggs.",
|
|
436
444
|
"catchType": "rod",
|
|
445
|
+
"category": "regular",
|
|
437
446
|
"seasons": ["fall"],
|
|
438
447
|
"location": "River",
|
|
439
448
|
"weather": "both",
|
|
@@ -493,6 +502,7 @@
|
|
|
493
502
|
"name": "Walleye",
|
|
494
503
|
"description": "A freshwater fish caught at night.",
|
|
495
504
|
"catchType": "rod",
|
|
505
|
+
"category": "regular",
|
|
496
506
|
"seasons": ["fall", "winter"],
|
|
497
507
|
"location": "River, Mountain Lake, Forest Pond",
|
|
498
508
|
"weather": "rainy",
|
|
@@ -558,6 +568,7 @@
|
|
|
558
568
|
"name": "Perch",
|
|
559
569
|
"description": "A freshwater fish of the winter.",
|
|
560
570
|
"catchType": "rod",
|
|
571
|
+
"category": "regular",
|
|
561
572
|
"seasons": ["winter"],
|
|
562
573
|
"location": "River, Mountain Lake, Forest Pond",
|
|
563
574
|
"weather": "both",
|
|
@@ -617,6 +628,7 @@
|
|
|
617
628
|
"name": "Carp",
|
|
618
629
|
"description": "A common pond fish.",
|
|
619
630
|
"catchType": "rod",
|
|
631
|
+
"category": "regular",
|
|
620
632
|
"seasons": ["spring", "summer", "fall"],
|
|
621
633
|
"location": "Mountain Lake, Secret Woods, Sewers, Mutant Bug Lair",
|
|
622
634
|
"weather": "both",
|
|
@@ -648,6 +660,7 @@
|
|
|
648
660
|
"name": "Catfish",
|
|
649
661
|
"description": "An uncommon fish found in streams.",
|
|
650
662
|
"catchType": "rod",
|
|
663
|
+
"category": "regular",
|
|
651
664
|
"seasons": ["spring", "fall", "winter"],
|
|
652
665
|
"location": "River, Secret Woods, Witch's Swamp",
|
|
653
666
|
"weather": "rainy",
|
|
@@ -679,6 +692,7 @@
|
|
|
679
692
|
"name": "Pike",
|
|
680
693
|
"description": "A freshwater fish that's difficult to catch.",
|
|
681
694
|
"catchType": "rod",
|
|
695
|
+
"category": "regular",
|
|
682
696
|
"seasons": ["summer", "winter"],
|
|
683
697
|
"location": "River, Forest Pond",
|
|
684
698
|
"weather": "both",
|
|
@@ -714,6 +728,7 @@
|
|
|
714
728
|
"name": "Sunfish",
|
|
715
729
|
"description": "A common river fish.",
|
|
716
730
|
"catchType": "rod",
|
|
731
|
+
"category": "regular",
|
|
717
732
|
"seasons": ["spring", "summer"],
|
|
718
733
|
"location": "River",
|
|
719
734
|
"weather": "sunny",
|
|
@@ -749,6 +764,7 @@
|
|
|
749
764
|
"name": "Red Mullet",
|
|
750
765
|
"description": "Long ago these were kept as pets.",
|
|
751
766
|
"catchType": "rod",
|
|
767
|
+
"category": "regular",
|
|
752
768
|
"seasons": ["summer", "winter"],
|
|
753
769
|
"location": "Ocean",
|
|
754
770
|
"weather": "both",
|
|
@@ -800,6 +816,7 @@
|
|
|
800
816
|
"name": "Herring",
|
|
801
817
|
"description": "A common ocean fish.",
|
|
802
818
|
"catchType": "rod",
|
|
819
|
+
"category": "regular",
|
|
803
820
|
"seasons": ["spring", "winter"],
|
|
804
821
|
"location": "Ocean",
|
|
805
822
|
"weather": "both",
|
|
@@ -831,6 +848,7 @@
|
|
|
831
848
|
"name": "Eel",
|
|
832
849
|
"description": "A long, slippery little fish.",
|
|
833
850
|
"catchType": "rod",
|
|
851
|
+
"category": "regular",
|
|
834
852
|
"seasons": ["spring", "fall"],
|
|
835
853
|
"location": "Ocean",
|
|
836
854
|
"weather": "rainy",
|
|
@@ -889,6 +907,7 @@
|
|
|
889
907
|
"name": "Octopus",
|
|
890
908
|
"description": "A mysterious and intelligent creature.",
|
|
891
909
|
"catchType": "rod",
|
|
910
|
+
"category": "regular",
|
|
892
911
|
"seasons": ["summer"],
|
|
893
912
|
"location": "Ocean, Ginger Island, Night Market submarine",
|
|
894
913
|
"weather": "both",
|
|
@@ -920,6 +939,7 @@
|
|
|
920
939
|
"name": "Red Snapper",
|
|
921
940
|
"description": "A popular fish with a nice red color.",
|
|
922
941
|
"catchType": "rod",
|
|
942
|
+
"category": "regular",
|
|
923
943
|
"seasons": ["summer", "fall", "winter"],
|
|
924
944
|
"location": "Ocean",
|
|
925
945
|
"weather": "rainy",
|
|
@@ -971,6 +991,7 @@
|
|
|
971
991
|
"name": "Squid",
|
|
972
992
|
"description": "A deep sea creature that can grow to enormous size.",
|
|
973
993
|
"catchType": "rod",
|
|
994
|
+
"category": "regular",
|
|
974
995
|
"seasons": ["winter"],
|
|
975
996
|
"location": "Ocean",
|
|
976
997
|
"weather": "both",
|
|
@@ -1002,6 +1023,7 @@
|
|
|
1002
1023
|
"name": "Seaweed",
|
|
1003
1024
|
"description": "It can be used in cooking.",
|
|
1004
1025
|
"catchType": "rod",
|
|
1026
|
+
"category": "other",
|
|
1005
1027
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1006
1028
|
"location": "Ocean",
|
|
1007
1029
|
"weather": "both",
|
|
@@ -1026,6 +1048,7 @@
|
|
|
1026
1048
|
"name": "Green Algae",
|
|
1027
1049
|
"description": "It's really slimy.",
|
|
1028
1050
|
"catchType": "rod",
|
|
1051
|
+
"category": "other",
|
|
1029
1052
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1030
1053
|
"location": "River, Mountain Lake",
|
|
1031
1054
|
"weather": "both",
|
|
@@ -1050,6 +1073,7 @@
|
|
|
1050
1073
|
"name": "Sea Cucumber",
|
|
1051
1074
|
"description": "A slippery, slimy creature found on the ocean floor.",
|
|
1052
1075
|
"catchType": "rod",
|
|
1076
|
+
"category": "regular",
|
|
1053
1077
|
"seasons": ["fall", "winter"],
|
|
1054
1078
|
"location": "Ocean",
|
|
1055
1079
|
"weather": "both",
|
|
@@ -1102,6 +1126,7 @@
|
|
|
1102
1126
|
"name": "Super Cucumber",
|
|
1103
1127
|
"description": "A rare, purple variety of sea cucumber.",
|
|
1104
1128
|
"catchType": "rod",
|
|
1129
|
+
"category": "regular",
|
|
1105
1130
|
"seasons": ["summer", "winter"],
|
|
1106
1131
|
"location": "Ocean, Ginger Island",
|
|
1107
1132
|
"weather": "both",
|
|
@@ -1141,6 +1166,7 @@
|
|
|
1141
1166
|
"name": "Ghostfish",
|
|
1142
1167
|
"description": "A pale, blind fish found in underground lakes.",
|
|
1143
1168
|
"catchType": "rod",
|
|
1169
|
+
"category": "regular",
|
|
1144
1170
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1145
1171
|
"location": "Mines (Floors 20 & 60)",
|
|
1146
1172
|
"weather": "both",
|
|
@@ -1188,6 +1214,7 @@
|
|
|
1188
1214
|
"name": "White Algae",
|
|
1189
1215
|
"description": "It's super slimy.",
|
|
1190
1216
|
"catchType": "rod",
|
|
1217
|
+
"category": "other",
|
|
1191
1218
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1192
1219
|
"location": "Mines",
|
|
1193
1220
|
"weather": "both",
|
|
@@ -1212,6 +1239,7 @@
|
|
|
1212
1239
|
"name": "Stonefish",
|
|
1213
1240
|
"description": "A bizarre fish that's shaped like a brick.",
|
|
1214
1241
|
"catchType": "rod",
|
|
1242
|
+
"category": "regular",
|
|
1215
1243
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1216
1244
|
"location": "Mines (Floor 20)",
|
|
1217
1245
|
"weather": "both",
|
|
@@ -1255,6 +1283,7 @@
|
|
|
1255
1283
|
"name": "Crimsonfish",
|
|
1256
1284
|
"description": "Lives deep in the ocean but likes to lay its eggs in the warm summer water.",
|
|
1257
1285
|
"catchType": "rod",
|
|
1286
|
+
"category": "legendary",
|
|
1258
1287
|
"seasons": ["summer"],
|
|
1259
1288
|
"location": "Ocean",
|
|
1260
1289
|
"weather": "both",
|
|
@@ -1286,6 +1315,7 @@
|
|
|
1286
1315
|
"name": "Angler",
|
|
1287
1316
|
"description": "Uses a bioluminescent dangler to attract prey.",
|
|
1288
1317
|
"catchType": "rod",
|
|
1318
|
+
"category": "legendary",
|
|
1289
1319
|
"seasons": ["fall"],
|
|
1290
1320
|
"location": "River",
|
|
1291
1321
|
"weather": "both",
|
|
@@ -1317,6 +1347,7 @@
|
|
|
1317
1347
|
"name": "Ice Pip",
|
|
1318
1348
|
"description": "A rare fish that thrives in extremely cold conditions.",
|
|
1319
1349
|
"catchType": "rod",
|
|
1350
|
+
"category": "regular",
|
|
1320
1351
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1321
1352
|
"location": "Mines (Floor 60)",
|
|
1322
1353
|
"weather": "both",
|
|
@@ -1364,6 +1395,7 @@
|
|
|
1364
1395
|
"name": "Lava Eel",
|
|
1365
1396
|
"description": "It can somehow survive in pools of red-hot lava.",
|
|
1366
1397
|
"catchType": "rod",
|
|
1398
|
+
"category": "regular",
|
|
1367
1399
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1368
1400
|
"location": "Mines (Floor 100), Volcano Caldera",
|
|
1369
1401
|
"weather": "both",
|
|
@@ -1411,6 +1443,7 @@
|
|
|
1411
1443
|
"name": "Legend",
|
|
1412
1444
|
"description": "The king of all fish! They said he'd never be caught.",
|
|
1413
1445
|
"catchType": "rod",
|
|
1446
|
+
"category": "legendary",
|
|
1414
1447
|
"seasons": ["spring"],
|
|
1415
1448
|
"location": "Mountain Lake",
|
|
1416
1449
|
"weather": "rainy",
|
|
@@ -1442,6 +1475,7 @@
|
|
|
1442
1475
|
"name": "Sandfish",
|
|
1443
1476
|
"description": "It tries to hide using camouflage.",
|
|
1444
1477
|
"catchType": "rod",
|
|
1478
|
+
"category": "regular",
|
|
1445
1479
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1446
1480
|
"location": "Desert",
|
|
1447
1481
|
"weather": "both",
|
|
@@ -1477,6 +1511,7 @@
|
|
|
1477
1511
|
"name": "Scorpion Carp",
|
|
1478
1512
|
"description": "It's like a regular carp but with a sharp stinger.",
|
|
1479
1513
|
"catchType": "rod",
|
|
1514
|
+
"category": "regular",
|
|
1480
1515
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1481
1516
|
"location": "Desert",
|
|
1482
1517
|
"weather": "both",
|
|
@@ -1513,6 +1548,7 @@
|
|
|
1513
1548
|
"name": "Flounder",
|
|
1514
1549
|
"description": "It lives on the bottom, so both eyes are on top of its head.",
|
|
1515
1550
|
"catchType": "rod",
|
|
1551
|
+
"category": "regular",
|
|
1516
1552
|
"seasons": ["spring", "summer"],
|
|
1517
1553
|
"location": "Ocean, Ginger Island",
|
|
1518
1554
|
"weather": "both",
|
|
@@ -1548,6 +1584,7 @@
|
|
|
1548
1584
|
"name": "Midnight Carp",
|
|
1549
1585
|
"description": "This shy fish only feels comfortable at night.",
|
|
1550
1586
|
"catchType": "rod",
|
|
1587
|
+
"category": "regular",
|
|
1551
1588
|
"seasons": ["fall", "winter"],
|
|
1552
1589
|
"location": "Forest Pond, Mountain Lake, Ginger Island",
|
|
1553
1590
|
"weather": "both",
|
|
@@ -1583,6 +1620,7 @@
|
|
|
1583
1620
|
"name": "Clam",
|
|
1584
1621
|
"description": "There's a chewy little guy in there...",
|
|
1585
1622
|
"catchType": "crab-pot",
|
|
1623
|
+
"category": "crab-pot",
|
|
1586
1624
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1587
1625
|
"location": "Ocean (crab pot)",
|
|
1588
1626
|
"sellPrice": 50,
|
|
@@ -1647,6 +1685,7 @@
|
|
|
1647
1685
|
"name": "Mutant Carp",
|
|
1648
1686
|
"description": "The strange waters of the sewer turned this carp into a monstrosity.",
|
|
1649
1687
|
"catchType": "rod",
|
|
1688
|
+
"category": "legendary",
|
|
1650
1689
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1651
1690
|
"location": "Sewers",
|
|
1652
1691
|
"weather": "both",
|
|
@@ -1678,6 +1717,7 @@
|
|
|
1678
1717
|
"name": "Sturgeon",
|
|
1679
1718
|
"description": "An ancient bottom-feeder with a dwindling population. Females can live up to 150 years.",
|
|
1680
1719
|
"catchType": "rod",
|
|
1720
|
+
"category": "regular",
|
|
1681
1721
|
"seasons": ["summer", "winter"],
|
|
1682
1722
|
"location": "Mountain Lake",
|
|
1683
1723
|
"weather": "both",
|
|
@@ -1709,6 +1749,7 @@
|
|
|
1709
1749
|
"name": "Tiger Trout",
|
|
1710
1750
|
"description": "A rare hybrid trout that cannot bear offspring of its own.",
|
|
1711
1751
|
"catchType": "rod",
|
|
1752
|
+
"category": "regular",
|
|
1712
1753
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1713
1754
|
"location": "River",
|
|
1714
1755
|
"weather": "both",
|
|
@@ -1740,6 +1781,7 @@
|
|
|
1740
1781
|
"name": "Bullhead",
|
|
1741
1782
|
"description": "A relative of the catfish that eats a variety of foods off the lake bottom.",
|
|
1742
1783
|
"catchType": "rod",
|
|
1784
|
+
"category": "regular",
|
|
1743
1785
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1744
1786
|
"location": "Mountain Lake",
|
|
1745
1787
|
"weather": "both",
|
|
@@ -1795,6 +1837,7 @@
|
|
|
1795
1837
|
"name": "Tilapia",
|
|
1796
1838
|
"description": "A primarily vegetarian fish that prefers warm water.",
|
|
1797
1839
|
"catchType": "rod",
|
|
1840
|
+
"category": "regular",
|
|
1798
1841
|
"seasons": ["summer", "fall"],
|
|
1799
1842
|
"location": "Ocean",
|
|
1800
1843
|
"weather": "both",
|
|
@@ -1846,6 +1889,7 @@
|
|
|
1846
1889
|
"name": "Chub",
|
|
1847
1890
|
"description": "A common freshwater fish known for its voracious appetite.",
|
|
1848
1891
|
"catchType": "rod",
|
|
1892
|
+
"category": "regular",
|
|
1849
1893
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
1850
1894
|
"location": "River, Mountain Lake",
|
|
1851
1895
|
"weather": "both",
|
|
@@ -1905,6 +1949,7 @@
|
|
|
1905
1949
|
"name": "Dorado",
|
|
1906
1950
|
"description": "A fierce carnivore with brilliant orange scales.",
|
|
1907
1951
|
"catchType": "rod",
|
|
1952
|
+
"category": "regular",
|
|
1908
1953
|
"seasons": ["summer"],
|
|
1909
1954
|
"location": "River",
|
|
1910
1955
|
"weather": "both",
|
|
@@ -1940,6 +1985,7 @@
|
|
|
1940
1985
|
"name": "Albacore",
|
|
1941
1986
|
"description": "Prefers temperature 'edges' where cool and warm water meet.",
|
|
1942
1987
|
"catchType": "rod",
|
|
1988
|
+
"category": "regular",
|
|
1943
1989
|
"seasons": ["fall", "winter"],
|
|
1944
1990
|
"location": "Ocean",
|
|
1945
1991
|
"weather": "both",
|
|
@@ -1991,6 +2037,7 @@
|
|
|
1991
2037
|
"name": "Shad",
|
|
1992
2038
|
"description": "Lives in a school at sea, but returns to the rivers to spawn.",
|
|
1993
2039
|
"catchType": "rod",
|
|
2040
|
+
"category": "regular",
|
|
1994
2041
|
"seasons": ["spring", "summer", "fall"],
|
|
1995
2042
|
"location": "River",
|
|
1996
2043
|
"weather": "rainy",
|
|
@@ -2056,6 +2103,7 @@
|
|
|
2056
2103
|
"name": "Lingcod",
|
|
2057
2104
|
"description": "A fearsome predator that will eat almost anything it can cram into its mouth.",
|
|
2058
2105
|
"catchType": "rod",
|
|
2106
|
+
"category": "regular",
|
|
2059
2107
|
"seasons": ["winter"],
|
|
2060
2108
|
"location": "River, Mountain Lake",
|
|
2061
2109
|
"weather": "both",
|
|
@@ -2091,6 +2139,7 @@
|
|
|
2091
2139
|
"name": "Halibut",
|
|
2092
2140
|
"description": "A flat fish that lives on the ocean floor.",
|
|
2093
2141
|
"catchType": "rod",
|
|
2142
|
+
"category": "regular",
|
|
2094
2143
|
"seasons": ["spring", "summer", "winter"],
|
|
2095
2144
|
"location": "Ocean",
|
|
2096
2145
|
"weather": "both",
|
|
@@ -2142,6 +2191,7 @@
|
|
|
2142
2191
|
"name": "Lobster",
|
|
2143
2192
|
"description": "A large ocean-dwelling crustacean with a strong tail.",
|
|
2144
2193
|
"catchType": "crab-pot",
|
|
2194
|
+
"category": "crab-pot",
|
|
2145
2195
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2146
2196
|
"location": "Ocean (crab pot)",
|
|
2147
2197
|
"sellPrice": 120,
|
|
@@ -2206,6 +2256,7 @@
|
|
|
2206
2256
|
"name": "Crayfish",
|
|
2207
2257
|
"description": "A small freshwater relative of the lobster.",
|
|
2208
2258
|
"catchType": "crab-pot",
|
|
2259
|
+
"category": "crab-pot",
|
|
2209
2260
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2210
2261
|
"location": "Freshwater (crab pot)",
|
|
2211
2262
|
"sellPrice": 75,
|
|
@@ -2262,6 +2313,7 @@
|
|
|
2262
2313
|
"name": "Crab",
|
|
2263
2314
|
"description": "A marine crustacean with two powerful pincers.",
|
|
2264
2315
|
"catchType": "crab-pot",
|
|
2316
|
+
"category": "crab-pot",
|
|
2265
2317
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2266
2318
|
"location": "Ocean (crab pot)",
|
|
2267
2319
|
"sellPrice": 100,
|
|
@@ -2326,6 +2378,7 @@
|
|
|
2326
2378
|
"name": "Cockle",
|
|
2327
2379
|
"description": "A common saltwater clam.",
|
|
2328
2380
|
"catchType": "crab-pot",
|
|
2381
|
+
"category": "crab-pot",
|
|
2329
2382
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2330
2383
|
"location": "Ocean (crab pot)",
|
|
2331
2384
|
"sellPrice": 50,
|
|
@@ -2390,6 +2443,7 @@
|
|
|
2390
2443
|
"name": "Mussel",
|
|
2391
2444
|
"description": "A common bivalve that often lives in clusters.",
|
|
2392
2445
|
"catchType": "crab-pot",
|
|
2446
|
+
"category": "crab-pot",
|
|
2393
2447
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2394
2448
|
"location": "Ocean (crab pot)",
|
|
2395
2449
|
"sellPrice": 30,
|
|
@@ -2454,6 +2508,7 @@
|
|
|
2454
2508
|
"name": "Shrimp",
|
|
2455
2509
|
"description": "A scavenger that feeds off the ocean floor. Widely prized for its meat.",
|
|
2456
2510
|
"catchType": "crab-pot",
|
|
2511
|
+
"category": "crab-pot",
|
|
2457
2512
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2458
2513
|
"location": "Ocean (crab pot)",
|
|
2459
2514
|
"sellPrice": 60,
|
|
@@ -2525,6 +2580,7 @@
|
|
|
2525
2580
|
"name": "Snail",
|
|
2526
2581
|
"description": "A wide-ranging mollusc that lives in a spiral shell.",
|
|
2527
2582
|
"catchType": "crab-pot",
|
|
2583
|
+
"category": "crab-pot",
|
|
2528
2584
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2529
2585
|
"location": "Freshwater (crab pot)",
|
|
2530
2586
|
"sellPrice": 65,
|
|
@@ -2581,6 +2637,7 @@
|
|
|
2581
2637
|
"name": "Periwinkle",
|
|
2582
2638
|
"description": "A tiny freshwater snail that lives in a blue shell.",
|
|
2583
2639
|
"catchType": "crab-pot",
|
|
2640
|
+
"category": "crab-pot",
|
|
2584
2641
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2585
2642
|
"location": "Freshwater (crab pot)",
|
|
2586
2643
|
"sellPrice": 20,
|
|
@@ -2644,6 +2701,7 @@
|
|
|
2644
2701
|
"name": "Oyster",
|
|
2645
2702
|
"description": "Constantly filters water to find food. In the process, it removes dangerous toxins from the environment.",
|
|
2646
2703
|
"catchType": "crab-pot",
|
|
2704
|
+
"category": "crab-pot",
|
|
2647
2705
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2648
2706
|
"location": "Ocean (crab pot)",
|
|
2649
2707
|
"sellPrice": 40,
|
|
@@ -2708,6 +2766,7 @@
|
|
|
2708
2766
|
"name": "Woodskip",
|
|
2709
2767
|
"description": "A very sensitive fish that can only live in pools deep in the forest.",
|
|
2710
2768
|
"catchType": "rod",
|
|
2769
|
+
"category": "regular",
|
|
2711
2770
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2712
2771
|
"location": "Secret Woods",
|
|
2713
2772
|
"weather": "both",
|
|
@@ -2765,6 +2824,7 @@
|
|
|
2765
2824
|
"name": "Glacierfish",
|
|
2766
2825
|
"description": "Builds a nest on the underside of glaciers.",
|
|
2767
2826
|
"catchType": "rod",
|
|
2827
|
+
"category": "legendary",
|
|
2768
2828
|
"seasons": ["winter"],
|
|
2769
2829
|
"location": "Forest (Arrowhead Island)",
|
|
2770
2830
|
"weather": "sunny",
|
|
@@ -2796,6 +2856,7 @@
|
|
|
2796
2856
|
"name": "Void Salmon",
|
|
2797
2857
|
"description": "A salmon, twisted by void energy. The fresh meat is jet black, but rapidly turns pink when exposed to air.",
|
|
2798
2858
|
"catchType": "rod",
|
|
2859
|
+
"category": "regular",
|
|
2799
2860
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2800
2861
|
"location": "Witch's Swamp",
|
|
2801
2862
|
"weather": "both",
|
|
@@ -2835,6 +2896,7 @@
|
|
|
2835
2896
|
"name": "Slimejack",
|
|
2836
2897
|
"description": "He's coated in a very thick layer of slime. He keeps slipping out of your hands!",
|
|
2837
2898
|
"catchType": "rod",
|
|
2899
|
+
"category": "regular",
|
|
2838
2900
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2839
2901
|
"location": "Mutant Bug Lair",
|
|
2840
2902
|
"weather": "both",
|
|
@@ -2878,6 +2940,7 @@
|
|
|
2878
2940
|
"name": "Midnight Squid",
|
|
2879
2941
|
"description": "A strange and mysterious denizen of the ocean's twilight depths.",
|
|
2880
2942
|
"catchType": "rod",
|
|
2943
|
+
"category": "night-market",
|
|
2881
2944
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2882
2945
|
"location": "Night Market submarine",
|
|
2883
2946
|
"weather": "both",
|
|
@@ -2909,6 +2972,7 @@
|
|
|
2909
2972
|
"name": "Spook Fish",
|
|
2910
2973
|
"description": "The huge eyes can detect the faint silhouettes of prey.",
|
|
2911
2974
|
"catchType": "rod",
|
|
2975
|
+
"category": "night-market",
|
|
2912
2976
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2913
2977
|
"location": "Night Market submarine",
|
|
2914
2978
|
"weather": "both",
|
|
@@ -2944,6 +3008,7 @@
|
|
|
2944
3008
|
"name": "Blobfish",
|
|
2945
3009
|
"description": "This odd creature floats above the ocean floor, consuming any edible material in its path.",
|
|
2946
3010
|
"catchType": "rod",
|
|
3011
|
+
"category": "night-market",
|
|
2947
3012
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2948
3013
|
"location": "Night Market submarine",
|
|
2949
3014
|
"weather": "both",
|
|
@@ -2983,6 +3048,7 @@
|
|
|
2983
3048
|
"name": "Stingray",
|
|
2984
3049
|
"description": "Despite having a toxic stinger, these fish are shy and prefer to avoid humans.",
|
|
2985
3050
|
"catchType": "rod",
|
|
3051
|
+
"category": "regular",
|
|
2986
3052
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
2987
3053
|
"location": "Ginger Island (Pirate Cove)",
|
|
2988
3054
|
"weather": "both",
|
|
@@ -3030,6 +3096,7 @@
|
|
|
3030
3096
|
"name": "Lionfish",
|
|
3031
3097
|
"description": "An aggressive, predatory fish with venomous spines.",
|
|
3032
3098
|
"catchType": "rod",
|
|
3099
|
+
"category": "regular",
|
|
3033
3100
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
3034
3101
|
"location": "Ginger Island",
|
|
3035
3102
|
"weather": "both",
|
|
@@ -3069,6 +3136,7 @@
|
|
|
3069
3136
|
"name": "Blue Discus",
|
|
3070
3137
|
"description": "A brightly colored tropical fish that is popular in aquariums.",
|
|
3071
3138
|
"catchType": "rod",
|
|
3139
|
+
"category": "regular",
|
|
3072
3140
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
3073
3141
|
"location": "Ginger Island (freshwater)",
|
|
3074
3142
|
"weather": "both",
|
|
@@ -3108,6 +3176,7 @@
|
|
|
3108
3176
|
"name": "Son of Crimsonfish",
|
|
3109
3177
|
"description": "He hatched in the warm summer water, and followed in the footsteps of his father.",
|
|
3110
3178
|
"catchType": "rod",
|
|
3179
|
+
"category": "legendary-2",
|
|
3111
3180
|
"seasons": ["winter"],
|
|
3112
3181
|
"location": "Ocean",
|
|
3113
3182
|
"weather": "both",
|
|
@@ -3139,6 +3208,7 @@
|
|
|
3139
3208
|
"name": "Ms. Angler",
|
|
3140
3209
|
"description": "Uses a bioluminescent dangler to attract prey.",
|
|
3141
3210
|
"catchType": "rod",
|
|
3211
|
+
"category": "legendary-2",
|
|
3142
3212
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
3143
3213
|
"location": "River",
|
|
3144
3214
|
"weather": "both",
|
|
@@ -3170,6 +3240,7 @@
|
|
|
3170
3240
|
"name": "Legend II",
|
|
3171
3241
|
"description": "The successor to the original Legend.",
|
|
3172
3242
|
"catchType": "rod",
|
|
3243
|
+
"category": "legendary-2",
|
|
3173
3244
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
3174
3245
|
"location": "Mountain Lake",
|
|
3175
3246
|
"weather": "rainy",
|
|
@@ -3201,6 +3272,7 @@
|
|
|
3201
3272
|
"name": "Radioactive Carp",
|
|
3202
3273
|
"description": "A carp that spent one too many years in toxic sludge.",
|
|
3203
3274
|
"catchType": "rod",
|
|
3275
|
+
"category": "legendary-2",
|
|
3204
3276
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
3205
3277
|
"location": "Sewers",
|
|
3206
3278
|
"weather": "both",
|
|
@@ -3232,6 +3304,7 @@
|
|
|
3232
3304
|
"name": "Glacierfish Jr.",
|
|
3233
3305
|
"description": "The original Glacierfish had a son...",
|
|
3234
3306
|
"catchType": "rod",
|
|
3307
|
+
"category": "legendary-2",
|
|
3235
3308
|
"seasons": ["winter"],
|
|
3236
3309
|
"location": "Forest (Arrowhead Island)",
|
|
3237
3310
|
"weather": "sunny",
|
|
@@ -3263,6 +3336,7 @@
|
|
|
3263
3336
|
"name": "Goby",
|
|
3264
3337
|
"description": "Some types of Gobies can climb up waterfalls.",
|
|
3265
3338
|
"catchType": "rod",
|
|
3339
|
+
"category": "regular",
|
|
3266
3340
|
"seasons": ["spring", "summer", "fall"],
|
|
3267
3341
|
"location": "Forest (waterfalls)",
|
|
3268
3342
|
"weather": "both",
|
|
@@ -3323,6 +3397,7 @@
|
|
|
3323
3397
|
"name": "Sea Jelly",
|
|
3324
3398
|
"description": "A rare jelly found in the ocean.",
|
|
3325
3399
|
"catchType": "rod",
|
|
3400
|
+
"category": "other",
|
|
3326
3401
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
3327
3402
|
"location": "Saltwater locations",
|
|
3328
3403
|
"weather": "both",
|
|
@@ -3346,6 +3421,7 @@
|
|
|
3346
3421
|
"name": "River Jelly",
|
|
3347
3422
|
"description": "A rare jelly found in freshwater.",
|
|
3348
3423
|
"catchType": "rod",
|
|
3424
|
+
"category": "other",
|
|
3349
3425
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
3350
3426
|
"location": "Freshwater locations",
|
|
3351
3427
|
"weather": "both",
|
|
@@ -3369,6 +3445,7 @@
|
|
|
3369
3445
|
"name": "Cave Jelly",
|
|
3370
3446
|
"description": "A rare jelly found in underground lakes.",
|
|
3371
3447
|
"catchType": "rod",
|
|
3448
|
+
"category": "other",
|
|
3372
3449
|
"seasons": ["spring", "summer", "fall", "winter"],
|
|
3373
3450
|
"location": "Mines (levels 20, 60, and 100)",
|
|
3374
3451
|
"weather": "both",
|