This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
fish.json
3124 lines (3124 loc) · 142 KB
/
fish.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"bitterling": {
"id": 1,
"file-name": "bitterling",
"name": {
"name-USen": "bitterling",
"name-EUen": "bitterling",
"name-EUde": "Bitterling",
"name-EUes": "amarguillo",
"name-USes": "amarguillo",
"name-EUfr": "bouvière",
"name-USfr": "bouvière",
"name-EUit": "rodeo",
"name-EUnl": "bittervoorn",
"name-CNzh": "红目鲫",
"name-TWzh": "紅目鯽",
"name-JPja": "タナゴ",
"name-KRko": "납줄개",
"name-EUru": "горчак"
},
"availability": {
"month-northern": "11-3",
"month-southern": "5-9",
"time": "",
"isAllDay": true,
"isAllYear": false,
"location": "River",
"rarity": "Common",
"month-array-northern": [11, 12, 1, 2, 3],
"month-array-southern": [5, 6, 7, 8, 9],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Smallest (1)",
"price": 900,
"price-cj": 1350,
"catch-phrase": "I caught a bitterling! It's mad at me, but only a little.",
"museum-phrase": "Bitterlings hide their eggs inside large bivalves—like clams—where the young can stay safe until grown. The bitterling isn't being sneaky. No, their young help keep the bivalve healthy by eating invading parasites! It's a wonderful bit of evolutionary deal making, don't you think? Each one keeping the other safe... Though eating parasites does not sound like a happy childhood... Is that why the fish is so bitter?",
"image_uri": "https://acnhapi.com/v1/images/fish/1",
"icon_uri": "https://acnhapi.com/v1/icons/fish/1"
},
"pale_chub": {
"id": 2,
"file-name": "pale_chub",
"name": {
"name-USen": "pale chub",
"name-EUen": "pale chub",
"name-EUde": "Döbel",
"name-EUes": "cacho",
"name-USes": "cacho",
"name-EUfr": "chevaine",
"name-USfr": "chevaine",
"name-EUit": "zacco",
"name-EUnl": "Japanse drakenvis",
"name-CNzh": "溪哥",
"name-TWzh": "溪哥",
"name-JPja": "オイカワ",
"name-KRko": "피라미",
"name-EUru": "светлый закко"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "9am - 4pm",
"isAllDay": false,
"isAllYear": true,
"location": "River",
"rarity": "Common",
"month-array-northern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"time-array": [9, 10, 11, 12, 13, 14, 15]
},
"shadow": "Smallest (1)",
"price": 200,
"price-cj": 300,
"catch-phrase": "I caught a pale chub! That name seems a bit judgy...",
"museum-phrase": "The pale chub is a river fish with simple back-and-silver coloring. Interestingly, the males' coloring becomes most vibrant when he's trying to attract a mate! Though normally plain, these fellows really know how to look stylish when they want to. Perhaps I could learn a thing or two from the pale chub...",
"image_uri": "https://acnhapi.com/v1/images/fish/2",
"icon_uri": "https://acnhapi.com/v1/icons/fish/2"
},
"crucian_carp": {
"id": 3,
"file-name": "crucian_carp",
"name": {
"name-USen": "crucian carp",
"name-EUen": "crucian carp",
"name-EUde": "Karausche",
"name-EUes": "carpín",
"name-USes": "carpín",
"name-EUfr": "carassin",
"name-USfr": "carassin",
"name-EUit": "carassio",
"name-EUnl": "kroeskarper",
"name-CNzh": "鲫鱼",
"name-TWzh": "鯽魚",
"name-JPja": "フナ",
"name-KRko": "붕어",
"name-EUru": "карась"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "",
"isAllDay": true,
"isAllYear": true,
"location": "River",
"rarity": "Common",
"month-array-northern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Small (2)",
"price": 160,
"price-cj": 240,
"catch-phrase": "I caught a crucian carp! My skills are sharp!",
"museum-phrase": "I wonder... Do you know how to tell the difference between a crucian carp and a standard-issue carp? It's quite easy to tell the two apart... One must simply locate the barbels. Or, rather, the lack of them! And just what is a barbel, you ask? Well, a barbel looks a little something like a mustache. A run-of-the-mill carp will sport this unsightly \"facial hair,\" while a crucian carp is considerably better groomed! I tried to grow a mustache when I was younger. It never did fill in quite right... All for the best in the end, as mustaches go so much better with noses than with beaks!",
"image_uri": "https://acnhapi.com/v1/images/fish/3",
"icon_uri": "https://acnhapi.com/v1/icons/fish/3"
},
"dace": {
"id": 4,
"file-name": "dace",
"name": {
"name-USen": "dace",
"name-EUen": "dace",
"name-EUde": "Hasel",
"name-EUes": "leucisco",
"name-USes": "leucisco",
"name-EUfr": "vandoise",
"name-USfr": "vandoise",
"name-EUit": "lasca",
"name-EUnl": "serpeling",
"name-CNzh": "雅罗鱼",
"name-TWzh": "珠星三塊魚",
"name-JPja": "ウグイ",
"name-KRko": "황어",
"name-EUru": "елец"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "4pm - 9am",
"isAllDay": false,
"isAllYear": true,
"location": "River",
"rarity": "Common",
"month-array-northern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"time-array": [16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8]
},
"shadow": "Medium (3)",
"price": 240,
"price-cj": 360,
"catch-phrase": "I caught a dace! Hope I have some space!",
"museum-phrase": "Dace are shiny little fish that enjoy freshwater streams with gravelly bottoms and plenty of sunlight. What a fishy paradise...until the larger fish move in and begin eating the dace! Sadly, the shiny dace are easy for other fish to spot, which makes them a popular snack. However, this particular specimen here has no need to worry. There's a strict \"No Eating Your Neighbor\" policy at this institution.",
"image_uri": "https://acnhapi.com/v1/images/fish/4",
"icon_uri": "https://acnhapi.com/v1/icons/fish/4"
},
"carp": {
"id": 5,
"file-name": "carp",
"name": {
"name-USen": "carp",
"name-EUen": "carp",
"name-EUde": "Karpfen",
"name-EUes": "carpa",
"name-USes": "carpa",
"name-EUfr": "carpe",
"name-USfr": "carpe",
"name-EUit": "carpa",
"name-EUnl": "karper",
"name-CNzh": "鲤鱼",
"name-TWzh": "鯉魚",
"name-JPja": "コイ",
"name-KRko": "잉어",
"name-EUru": "сазан"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "",
"isAllDay": true,
"isAllYear": true,
"location": "Pond",
"rarity": "Common",
"month-array-northern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Medium (4)",
"price": 300,
"price-cj": 450,
"catch-phrase": "I caught a carp! If I catch another they can carpool!",
"museum-phrase": "Oh, the carp... have you ever seen their teeth? For your sake, I hope you have not! Carp have teeth in their throat strong enough to crunch on hard things like shells and fingers! A good rule of thumb when dealing with other species is to keep your fingers out of their mouths. Although, having neither thumbs nor fingers, I am quite safe from this little fellow!",
"image_uri": "https://acnhapi.com/v1/images/fish/5",
"icon_uri": "https://acnhapi.com/v1/icons/fish/5"
},
"koi": {
"id": 6,
"file-name": "koi",
"name": {
"name-USen": "koi",
"name-EUen": "koi",
"name-EUde": "Koi-Karpfen",
"name-EUes": "koi",
"name-USes": "koi",
"name-EUfr": "carpe koï",
"name-USfr": "carpe koï",
"name-EUit": "koi",
"name-EUnl": "koikarper",
"name-CNzh": "锦鲤",
"name-TWzh": "錦鯉",
"name-JPja": "ニシキゴイ",
"name-KRko": "비단잉어",
"name-EUru": "карп кои"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "4pm - 9am",
"isAllDay": false,
"isAllYear": true,
"location": "Pond",
"rarity": "Uncommon",
"month-array-northern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"time-array": [16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8]
},
"shadow": "Medium (4)",
"price": 4000,
"price-cj": 6000,
"catch-phrase": "I caught a koi! I don't know why it's so shy... or such a bad speller...",
"museum-phrase": "Koi are a variety of carp bred for their color mutations...starting more than a thousand years ago! Well, one glance at their impressive coloring tells you that the centuries of effort were worth it. And even today people still selectively breed koi in search of new color combinations! One marvels at the thought of what the koi may look like in another thousand years.",
"image_uri": "https://acnhapi.com/v1/images/fish/6",
"icon_uri": "https://acnhapi.com/v1/icons/fish/6"
},
"goldfish": {
"id": 7,
"file-name": "goldfish",
"name": {
"name-USen": "goldfish",
"name-EUen": "goldfish",
"name-EUde": "Goldfisch",
"name-EUes": "pez dorado",
"name-USes": "pez dorado",
"name-EUfr": "poisson rouge",
"name-USfr": "poisson rouge",
"name-EUit": "pesce rosso",
"name-EUnl": "goudvis",
"name-CNzh": "金鱼",
"name-TWzh": "金魚",
"name-JPja": "キンギョ",
"name-KRko": "금붕어",
"name-EUru": "золотая рыбка"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "",
"isAllDay": true,
"isAllYear": true,
"location": "Pond",
"rarity": "Common",
"month-array-northern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Smallest (1)",
"price": 1300,
"price-cj": 1950,
"catch-phrase": "I caught a goldfish! It's worth its weight in fish!",
"museum-phrase": "Goldfish are so cute and delicate... but do you know how big they can get? Why, they can grow up to... a foot in length! Well, sometimes. The size of the tank they're kept in tends to restrict their growth. And just how big will this goldfish get in our large museum tank? I look forward to finding out!",
"image_uri": "https://acnhapi.com/v1/images/fish/7",
"icon_uri": "https://acnhapi.com/v1/icons/fish/7"
},
"pop-eyed_goldfish": {
"id": 8,
"file-name": "pop-eyed_goldfish",
"name": {
"name-USen": "pop-eyed goldfish",
"name-EUen": "pop-eyed goldfish",
"name-EUde": "Teleskopauge",
"name-EUes": "pez telescopio",
"name-USes": "pez telescopio",
"name-EUfr": "cyprin doré",
"name-USfr": "cyprin doré",
"name-EUit": "pesce telescopio",
"name-EUnl": "telescoopooggoudvis",
"name-CNzh": "龙睛金鱼",
"name-TWzh": "龍睛金魚",
"name-JPja": "デメキン",
"name-KRko": "툭눈금붕어",
"name-EUru": "телескоп"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "9am - 4pm",
"isAllDay": false,
"isAllYear": true,
"location": "Pond",
"rarity": "Common",
"month-array-northern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"time-array": [9, 10, 11, 12, 13, 14, 15]
},
"shadow": "Smallest (1)",
"price": 1300,
"price-cj": 1950,
"catch-phrase": "I got a pop-eyed goldfish! It looks so...surprised!",
"museum-phrase": "Pop-eyed goldfish have, as the name suggests, huge round eyes. But as babies they look like other goldfish! As they grow, their eyes begin to pop out and they gain their, hoo, distinct appearance... Imagine the poor fish fancier who unknowingly bought one! Their eyes might well pop out just as far!",
"image_uri": "https://acnhapi.com/v1/images/fish/8",
"icon_uri": "https://acnhapi.com/v1/icons/fish/8"
},
"ranchu_goldfish": {
"id": 9,
"file-name": "ranchu_goldfish",
"name": {
"name-USen": "ranchu goldfish",
"name-EUen": "ranchu goldfish",
"name-EUde": "Ranchu",
"name-EUes": "ranchú",
"name-USes": "ranchú",
"name-EUfr": "ranchu",
"name-USfr": "ranchu",
"name-EUit": "ranchu",
"name-EUnl": "buffelrug",
"name-CNzh": "兰寿金鱼",
"name-TWzh": "蘭壽金魚",
"name-JPja": "ランチュウ",
"name-KRko": "난주",
"name-EUru": "ранчу"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "9am - 4pm",
"isAllDay": false,
"isAllYear": true,
"location": "Pond",
"rarity": "Uncommon",
"month-array-northern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"time-array": [9, 10, 11, 12, 13, 14, 15]
},
"shadow": "Small (2)",
"price": 4500,
"price-cj": 6750,
"catch-phrase": "I caught a ranchu goldfish! But I prefer balsamicu goldfish!",
"museum-phrase": "The ranchu goldfish is a charming relative of the goldfish with a bumpy head and stout, round body. They have ordinary heads when born, but develop impressive rectangular heads after about three years. Supposedly their head shape changes depending on factors like the size of their tank... So ranchu goldfish enthusiasts aim to raise perfectly shaped specimens and work hard to achieve this. Of course, no one asks the ranchu goldfish themselves what shape they want their heads to be...",
"image_uri": "https://acnhapi.com/v1/images/fish/9",
"icon_uri": "https://acnhapi.com/v1/icons/fish/9"
},
"killifish": {
"id": 10,
"file-name": "killifish",
"name": {
"name-USen": "killifish",
"name-EUen": "killifish",
"name-EUde": "Killifisch",
"name-EUes": "killi",
"name-USes": "killi",
"name-EUfr": "fondule barré",
"name-USfr": "fondule barré",
"name-EUit": "killifish",
"name-EUnl": "killivis",
"name-CNzh": "稻田鱼",
"name-TWzh": "稻田魚",
"name-JPja": "メダカ",
"name-KRko": "송사리",
"name-EUru": "оризия"
},
"availability": {
"month-northern": "4-8",
"month-southern": "10-2",
"time": "",
"isAllDay": true,
"isAllYear": false,
"location": "Pond",
"rarity": "Common",
"month-array-northern": [4, 5, 6, 7, 8],
"month-array-southern": [10, 11, 12, 1, 2],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Smallest (1)",
"price": 300,
"price-cj": 450,
"catch-phrase": "I caught a killifish! The streams are safe again.",
"museum-phrase": "Ah, the magnificent killifish! Did you know there are over 1,000 different species? My own favorite killifish species are the mangrove, which can live on land for weeks, breathing air! And the mummichog, the first fish ever brought to space. I wonder if the killifish you've brought me is related to either those intrepid explorers?",
"image_uri": "https://acnhapi.com/v1/images/fish/10",
"icon_uri": "https://acnhapi.com/v1/icons/fish/10"
},
"crawfish": {
"id": 11,
"file-name": "crawfish",
"name": {
"name-USen": "crawfish",
"name-EUen": "crawfish",
"name-EUde": "Flusskrebs",
"name-EUes": "cangrejo de río",
"name-USes": "cangrejo de río",
"name-EUfr": "écrevisse",
"name-USfr": "écrevisse",
"name-EUit": "gambero",
"name-EUnl": "rode rivierkreeft",
"name-CNzh": "淡水龙虾",
"name-TWzh": "淡水龍蝦",
"name-JPja": "ザリガニ",
"name-KRko": "가재",
"name-EUru": "рак"
},
"availability": {
"month-northern": "4-9",
"month-southern": "10-3",
"time": "",
"isAllDay": true,
"isAllYear": false,
"location": "Pond",
"rarity": "Common",
"month-array-northern": [4, 5, 6, 7, 8, 9],
"month-array-southern": [10, 11, 12, 1, 2, 3],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Small (2)",
"price": 200,
"price-cj": 300,
"catch-phrase": "I caught a crawfish! Or else it's a lobster and I'm a giant!",
"museum-phrase": "Ohoo! So you have found a crawfish. Neither crab nor lobster, crawfish evolved in an interesting manner. Beware their fearsome pinchy pinchers! Behold their many legs! I say! It is a big bug-like, eh wot...The more I look at it, the more unsettled I feel... Let's be done with this and never speak of it again, shall we?",
"image_uri": "https://acnhapi.com/v1/images/fish/11",
"icon_uri": "https://acnhapi.com/v1/icons/fish/11"
},
"soft-shelled_turtle": {
"id": 12,
"file-name": "soft-shelled_turtle",
"name": {
"name-USen": "soft-shelled turtle",
"name-EUen": "soft-shelled turtle",
"name-EUde": "Weichschildkröte",
"name-EUes": "tortuga caparazón blando",
"name-USes": "tortuga caparazón blando",
"name-EUfr": "tortue trionyx",
"name-USfr": "tortue trionyx",
"name-EUit": "apalone ferox",
"name-EUnl": "weekschildpad",
"name-CNzh": "鳖",
"name-TWzh": "鱉",
"name-JPja": "スッポン",
"name-KRko": "자라",
"name-EUru": "трионикс"
},
"availability": {
"month-northern": "8-9",
"month-southern": "2-3",
"time": "4pm - 9am",
"isAllDay": false,
"isAllYear": false,
"location": "River",
"rarity": "Uncommon",
"month-array-northern": [8, 9],
"month-array-southern": [2, 3],
"time-array": [16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8]
},
"shadow": "Medium (4)",
"price": 3750,
"price-cj": 5625,
"catch-phrase": "I caught a soft-shelled turtle! I can really shell it out!",
"alt-catch-phrase": ["I caught a soft-shelled turtle! I should take a shellfie!"],
"museum-phrase": "These relatives of common turtles will not let go when they decide to bite down on something. Although they can be quite shy, they will become a bit aggressive when threatened. They are often found in water and are very good swimmers because of the flat shape of their shells. They swim with their snouts over the surface of the water so they can breathe. Soft-shelled turtles aren't safe to hold because they are so prone to biting at the slightest movement. However, if one bites down on you, it will usually let go when you put it safely back in the water.",
"image_uri": "https://acnhapi.com/v1/images/fish/12",
"icon_uri": "https://acnhapi.com/v1/icons/fish/12"
},
"snapping_turtle": {
"id": 13,
"file-name": "snapping_turtle",
"name": {
"name-USen": "snapping turtle",
"name-EUen": "snapping turtle",
"name-EUde": "Schnappschildkröte",
"name-EUes": "tortuga mordedora",
"name-USes": "tortuga mordedora",
"name-EUfr": "tortue serpentine",
"name-USfr": "tortue serpentine",
"name-EUit": "tartaruga azzannatrice",
"name-EUnl": "bijtschildpad",
"name-CNzh": "拟鳄龟",
"name-TWzh": "擬鱷龜",
"name-JPja": "カミツキガメ",
"name-KRko": "늑대거북",
"name-EUru": "каймановая черепаха"
},
"availability": {
"month-northern": "4-10",
"month-southern": "10-4",
"time": "9pm - 4am",
"isAllDay": false,
"isAllYear": false,
"location": "River",
"rarity": "Common",
"month-array-northern": [4, 5, 6, 7, 8, 9, 10],
"month-array-southern": [10, 11, 12, 1, 2, 3, 4],
"time-array": [21, 22, 23, 0, 1, 2, 3]
},
"shadow": "Large (5)",
"price": 5000,
"price-cj": 7500,
"catch-phrase": "I caught a snapping turtle! How can it snap without fingers?",
"museum-phrase": "The snapping turtle is a large turtle known for it's crocodile-like body and long claws. No, wait-- it is better known for it's ferocious bite, which it can deliver with shocking speed for a turtle. NO, WAIT-- it is BEST known for that time one chased me across a parking lot and I had to climb on top of a car.",
"image_uri": "https://acnhapi.com/v1/images/fish/13",
"icon_uri": "https://acnhapi.com/v1/icons/fish/13"
},
"tadpole": {
"id": 14,
"file-name": "tadpole",
"name": {
"name-USen": "tadpole",
"name-EUen": "tadpole",
"name-EUde": "Kaulquappe",
"name-EUes": "renacuajo",
"name-USes": "renacuajo",
"name-EUfr": "têtard",
"name-USfr": "têtard",
"name-EUit": "girino",
"name-EUnl": "kikkervisje",
"name-CNzh": "蝌蚪",
"name-TWzh": "蝌蚪",
"name-JPja": "オタマジャクシ",
"name-KRko": "올챙이",
"name-EUru": "головастик"
},
"availability": {
"month-northern": "3-7",
"month-southern": "9-1",
"time": "",
"isAllDay": true,
"isAllYear": false,
"location": "Pond",
"rarity": "Common",
"month-array-northern": [3, 4, 5, 6, 7],
"month-array-southern": [9, 10, 11, 12, 1],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Smallest (1)",
"price": 100,
"price-cj": 150,
"catch-phrase": "I caught a tadpole... It's just a tad small.",
"museum-phrase": "Undoubtedly you know that tadpoles eventually turn into frogs. I must say, I find them impossibly adorable with their squiggly little tails. But even cuter... when they sprout legs! Why, we can witness accelerated evolution in these squirmy little ones. Hoo, it makes me so emotional!",
"image_uri": "https://acnhapi.com/v1/images/fish/14",
"icon_uri": "https://acnhapi.com/v1/icons/fish/14"
},
"frog": {
"id": 15,
"file-name": "frog",
"name": {
"name-USen": "frog",
"name-EUen": "frog",
"name-EUde": "Frosch",
"name-EUes": "rana",
"name-USes": "rana",
"name-EUfr": "grenouille",
"name-USfr": "grenouille",
"name-EUit": "rana",
"name-EUnl": "kikker",
"name-CNzh": "青蛙",
"name-TWzh": "青蛙",
"name-JPja": "カエル",
"name-KRko": "개구리",
"name-EUru": "лягушка"
},
"availability": {
"month-northern": "5-8",
"month-southern": "11-2",
"time": "",
"isAllDay": true,
"isAllYear": false,
"location": "Pond",
"rarity": "Common",
"month-array-northern": [5, 6, 7, 8],
"month-array-southern": [11, 12, 1, 2],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Small (2)",
"price": 120,
"price-cj": 180,
"catch-phrase": "I caught a frog! Or it's a new neighbor...and I have some apologizing to do.",
"museum-phrase": "I understand that frogs converse with fellow frogs through a number of varied calls, as it were. Ribbit! My prince has arrived! Gribbit riiibbit! This pond is tragic! Ribbity rib't! I think you're splendid! Hoo hoo, of course I have no clue what they're saying, but I like to think if I practice enough, I might!",
"image_uri": "https://acnhapi.com/v1/images/fish/15",
"icon_uri": "https://acnhapi.com/v1/icons/fish/15"
},
"freshwater_goby": {
"id": 16,
"file-name": "freshwater_goby",
"name": {
"name-USen": "freshwater goby",
"name-EUen": "freshwater goby",
"name-EUde": "Flussgrundel",
"name-EUes": "gobio de río",
"name-USes": "gobio de río",
"name-EUfr": "gobie d'eau douce",
"name-USfr": "gobie d'eau douce",
"name-EUit": "ghiozzo",
"name-EUnl": "zoetwatergrondel",
"name-CNzh": "塘鳢鱼",
"name-TWzh": "塘鱧魚",
"name-JPja": "ドンコ",
"name-KRko": "동사리",
"name-EUru": "одонтобутис"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "4pm - 9am",
"isAllDay": false,
"isAllYear": true,
"location": "River",
"rarity": "Common",
"month-array-northern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"time-array": [16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8]
},
"shadow": "Small (2)",
"price": 400,
"price-cj": 600,
"catch-phrase": "I caught a freshwater goby! Time to go bye-bye!",
"museum-phrase": "The freshwater goby is an unassuming specimen. But beneath that calm, fish exterior, true gluttony resides! It will eat anything that will fit in its mouth...And its mouth is quite the gaping maw, so I recommend you refrain from drawing attention to yourself!",
"image_uri": "https://acnhapi.com/v1/images/fish/16",
"icon_uri": "https://acnhapi.com/v1/icons/fish/16"
},
"loach": {
"id": 17,
"file-name": "loach",
"name": {
"name-USen": "loach",
"name-EUen": "loach",
"name-EUde": "Bachschmerle",
"name-EUes": "locha",
"name-USes": "locha",
"name-EUfr": "loche d'étang",
"name-USfr": "loche d'étang",
"name-EUit": "cobite",
"name-EUnl": "modderkruiper",
"name-CNzh": "泥鳅",
"name-TWzh": "泥鰍",
"name-JPja": "ドジョウ",
"name-KRko": "미꾸라지",
"name-EUru": "вьюн"
},
"availability": {
"month-northern": "3-5",
"month-southern": "9-11",
"time": "",
"isAllDay": true,
"isAllYear": false,
"location": "River",
"rarity": "Common",
"month-array-northern": [3, 4, 5],
"month-array-southern": [9, 10, 11],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Small (2)",
"price": 400,
"price-cj": 600,
"catch-phrase": "I caught a loach! It's...looking at me with reproach.",
"museum-phrase": "Loaches are a large group of bottom-feeding freshwater fish. Because there are so many species, it is difficult to generalize about them all. The one thing they all have in common is perhaps their most unappealing trait; the name 'loach.' Repellent, isn't it? They should have just called it the 'cockloach' and been done with it, eh wot! Loach...loach... It just tastes terrible in the beak.",
"image_uri": "https://acnhapi.com/v1/images/fish/17",
"icon_uri": "https://acnhapi.com/v1/icons/fish/17"
},
"catfish": {
"id": 18,
"file-name": "catfish",
"name": {
"name-USen": "catfish",
"name-EUen": "catfish",
"name-EUde": "Katzenwels",
"name-EUes": "siluro",
"name-USes": "siluro",
"name-EUfr": "silure",
"name-USfr": "barbotte",
"name-EUit": "pesce gatto",
"name-EUnl": "meerval",
"name-CNzh": "鲶鱼",
"name-TWzh": "鯰魚",
"name-JPja": "ナマズ",
"name-KRko": "메기",
"name-EUru": "сом"
},
"availability": {
"month-northern": "5-10",
"month-southern": "11-4",
"time": "4pm - 9am",
"isAllDay": false,
"isAllYear": false,
"location": "Pond",
"rarity": "Common",
"month-array-northern": [5, 6, 7, 8, 9, 10],
"month-array-southern": [11, 12, 1, 2, 3, 4],
"time-array": [16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8]
},
"shadow": "Medium (4)",
"price": 800,
"price-cj": 1200,
"catch-phrase": "I caught a catfish! I'm more of a dogfish person...",
"museum-phrase": "Catfish don't have scales and are rather slimy. Believe it or not, this slime helps them breathe! Some species of catfish are nocturnal, and they'll feed on almost anything. They use a suctioning action to pull in their food. Did I mention they can grow as large as you or I?",
"image_uri": "https://acnhapi.com/v1/images/fish/18",
"icon_uri": "https://acnhapi.com/v1/icons/fish/18"
},
"giant_snakehead": {
"id": 19,
"file-name": "giant_snakehead",
"name": {
"name-USen": "giant snakehead",
"name-EUen": "giant snakehead",
"name-EUde": "Schlangenkopf",
"name-EUes": "pez cabeza de serpiente",
"name-USes": "pez cabeza de serpiente",
"name-EUfr": "tête-de-serpent",
"name-USfr": "tête-de-serpent",
"name-EUit": "pesce serpente",
"name-EUnl": "rode slangenkopvis",
"name-CNzh": "黑鱼",
"name-TWzh": "鱧魚",
"name-JPja": "ライギョ",
"name-KRko": "가물치",
"name-EUru": "змееголов"
},
"availability": {
"month-northern": "6-8",
"month-southern": "12-2",
"time": "9am - 4pm",
"isAllDay": false,
"isAllYear": false,
"location": "Pond",
"rarity": "Rare",
"month-array-northern": [6, 7, 8],
"month-array-southern": [12, 1, 2],
"time-array": [9, 10, 11, 12, 13, 14, 15]
},
"shadow": "Large (5)",
"price": 5500,
"price-cj": 8250,
"catch-phrase": "I caught a giant snakehead! Um...but I asked for a medium?",
"museum-phrase": "The giant snakehead is quite a sight to behold, wot! One glance conjurs up visions of its namesake. This resilient creature can even find a home in the mud, where it is able to breathe. As a matter of fact, it dislikes cold weather, so during wintertime the mud serves as its temporary home. I hear that they eat anything that swims past their head. While odd, I feel a sense of owlship with them.",
"image_uri": "https://acnhapi.com/v1/images/fish/19",
"icon_uri": "https://acnhapi.com/v1/icons/fish/19"
},
"bluegill": {
"id": 20,
"file-name": "bluegill",
"name": {
"name-USen": "bluegill",
"name-EUen": "bluegill",
"name-EUde": "Sonnenbarsch",
"name-EUes": "pez sol",
"name-USes": "pez sol",
"name-EUfr": "crapet",
"name-USfr": "crapet",
"name-EUit": "pesce persico",
"name-EUnl": "zonnebaars",
"name-CNzh": "蓝腮太阳鱼",
"name-TWzh": "藍鰓太陽魚",
"name-JPja": "ブルーギル",
"name-KRko": "블루길",
"name-EUru": "солнечник"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "9am - 4pm",
"isAllDay": false,
"isAllYear": true,
"location": "River",
"rarity": "Common",
"month-array-northern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"time-array": [9, 10, 11, 12, 13, 14, 15]
},
"shadow": "Small (2)",
"price": 180,
"price-cj": 270,
"catch-phrase": "I caught a bluegill! Do you think it calls me \"pinklung\"?",
"museum-phrase": "The bluegill is incredibly common. A bit too common, depending upon where you are. They eat anything that fits in their mouths and are highly adaptable. The bane of fishermen in some areas, bluegill is often the only fish to be caught! But looking in its wee beady eyes, I must say I see no ill will in it...",
"image_uri": "https://acnhapi.com/v1/images/fish/20",
"icon_uri": "https://acnhapi.com/v1/icons/fish/20"
},
"yellow_perch": {
"id": 21,
"file-name": "yellow_perch",
"name": {
"name-USen": "yellow perch",
"name-EUen": "yellow perch",
"name-EUde": "Flussbarsch",
"name-EUes": "perca amarilla",
"name-USes": "perca amarilla",
"name-EUfr": "perche jaune",
"name-USfr": "perche jaune",
"name-EUit": "perca dorata",
"name-EUnl": "jackbaars",
"name-CNzh": "黄鲈鱼",
"name-TWzh": "黃鱸魚",
"name-JPja": "イエローパーチ",
"name-KRko": "옐로우퍼치",
"name-EUru": "желтый окунь"
},
"availability": {
"month-northern": "10-3",
"month-southern": "4-9",
"time": "",
"isAllDay": true,
"isAllYear": false,
"location": "River",
"rarity": "Common",
"month-array-northern": [10, 11, 12, 1, 2, 3],
"month-array-southern": [4, 5, 6, 7, 8, 9],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Medium (3)",
"price": 300,
"price-cj": 450,
"catch-phrase": "I caught a yellow perch! Those yellow birds have to sit somewhere!",
"museum-phrase": "The yellow perch is certainly worth squawking about. I find it a sight to behold! That jagged dorsal fin! Those brilliant stripes! Those glorious colours! Hoo, truly it is quite the specimen. I would be thrilled to witness it firsthand in its natural environment... But the yellow perch's peak season is winter, I'm afraid. (So very afraid... of winter's biting chill...)",
"image_uri": "https://acnhapi.com/v1/images/fish/21",
"icon_uri": "https://acnhapi.com/v1/icons/fish/21"
},
"black_bass": {
"id": 22,
"file-name": "black_bass",
"name": {
"name-USen": "black bass",
"name-EUen": "black bass",
"name-EUde": "Barsch",
"name-EUes": "perca",
"name-USes": "perca",
"name-EUfr": "bar",
"name-USfr": "bar",
"name-EUit": "boccalone",
"name-EUnl": "forelbaars",
"name-CNzh": "黑鲈鱼",
"name-TWzh": "黑鱸魚",
"name-JPja": "ブラックバス",
"name-KRko": "큰입배스",
"name-EUru": "большеротый окунь"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "",
"isAllDay": true,
"isAllYear": true,
"location": "River",
"rarity": "Common",
"month-array-northern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Medium (4)",
"price": 400,
"price-cj": 600,
"catch-phrase": "I caught a black bass! The most metal of all fish!",
"museum-phrase": "The black bass is a formidably strong fish and, as such, is a common target for sport anglers. In some areas, there are even those who professionally catch just black bass! Yet in other areas where they are NOT native, they are considered an ecological nuisance. Invasive, even. One cannot help but wonder who is to blame for their invasion, hoo.",
"image_uri": "https://acnhapi.com/v1/images/fish/22",
"icon_uri": "https://acnhapi.com/v1/icons/fish/22"
},
"tilapia": {
"id": 23,
"file-name": "tilapia",
"name": {
"name-USen": "tilapia",
"name-EUen": "tilapia",
"name-EUde": "Tilapia",
"name-EUes": "tilapia",
"name-USes": "tilapia",
"name-EUfr": "tilapia",
"name-USfr": "tilapia",
"name-EUit": "tilapia",
"name-EUnl": "tilapia",
"name-CNzh": "吴郭鱼",
"name-TWzh": "吳郭魚",
"name-JPja": "ティラピア",
"name-KRko": "틸라피아",
"name-EUru": "тилапия"
},
"availability": {
"month-northern": "6-10",
"month-southern": "12-4",
"time": "",
"isAllDay": true,
"isAllYear": false,
"location": "River",
"rarity": "Common",
"month-array-northern": [6, 7, 8, 9, 10],
"month-array-southern": [12, 1, 2, 3, 4],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Medium (3)",
"price": 800,
"price-cj": 1200,
"catch-phrase": "I caught a tilapia! It makes me happy-a!",
"museum-phrase": "Wherever the waters are warm, the tilapia can be found. It is a highly adaptable river fish. They mainly feed on algae, but they will also eat larvae and dead fish— or whatever fits in their mouths. I will confess that, as a growing owlet, I similarly defined food as 'anything that fits in my beak.'",
"image_uri": "https://acnhapi.com/v1/images/fish/23",
"icon_uri": "https://acnhapi.com/v1/icons/fish/23"
},
"pike": {
"id": 24,
"file-name": "pike",
"name": {
"name-USen": "pike",
"name-EUen": "pike",
"name-EUde": "Hecht",
"name-EUes": "lucio",
"name-USes": "lucio",
"name-EUfr": "brochet",
"name-USfr": "brochet",
"name-EUit": "luccio nordico",
"name-EUnl": "snoek",
"name-CNzh": "白斑狗鱼",
"name-TWzh": "白斑狗魚",
"name-JPja": "パイク",
"name-KRko": "강꼬치고기",
"name-EUru": "щука"
},
"availability": {
"month-northern": "9-12",
"month-southern": "3-6",
"time": "",
"isAllDay": true,
"isAllYear": false,
"location": "River",
"rarity": "Uncommon",
"month-array-northern": [9, 10, 11, 12],
"month-array-southern": [3, 4, 5, 6],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Large (5)",
"price": 1800,
"price-cj": 2700,
"catch-phrase": "I caught a pike! Think a swordfish would be up for a duel?",
"museum-phrase": "The pike has always reminded me a bit of salmon, although a pike can grow rather larger. These brutes can grow to over four feet long, sometimes MUCH over! Hoo hoo! It is carnivorous and preys not only on other fish, but also mammals and some waterfowl. If I were to ever meet one in the water, I would have a most difficult time keeping my wits about me.",
"image_uri": "https://acnhapi.com/v1/images/fish/24",
"icon_uri": "https://acnhapi.com/v1/icons/fish/24"
},
"pond_smelt": {
"id": 25,
"file-name": "pond_smelt",
"name": {
"name-USen": "pond smelt",
"name-EUen": "pond smelt",
"name-EUde": "Stint",
"name-EUes": "eperlano",
"name-USes": "eperlano",
"name-EUfr": "éperlan",
"name-USfr": "éperlan",
"name-EUit": "pingo",
"name-EUnl": "spiering",
"name-CNzh": "西太公鱼",
"name-TWzh": "西太公魚",
"name-JPja": "ワカサギ",
"name-KRko": "빙어",
"name-EUru": "малая корюшка"
},
"availability": {
"month-northern": "12-2",
"month-southern": "6-8",
"time": "",
"isAllDay": true,
"isAllYear": false,
"location": "River",
"rarity": "Common",
"month-array-northern": [12, 1, 2],
"month-array-southern": [6, 7, 8],
"time-array": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
"shadow": "Small (2)",
"price": 400,
"price-cj": 600,
"catch-phrase": "I caught a pond smelt! Whoever smelt it dealt it!",
"museum-phrase": "For many, thinking of pond smelt inevitably leads to thoughts of ice fishing in frozen rivers and lakes. Ice fishing involves making a round hole in the ice, dropping in your fishing line, and...waiting. Not to rain on anyone else's idea of fun, but...well, perhaps I shouldn't say anything.",
"image_uri": "https://acnhapi.com/v1/images/fish/25",
"icon_uri": "https://acnhapi.com/v1/icons/fish/25"
},
"sweetfish": {
"id": 26,
"file-name": "sweetfish",
"name": {
"name-USen": "sweetfish",
"name-EUen": "sweetfish",
"name-EUde": "Ayu",
"name-EUes": "ayu",
"name-USes": "ayu",
"name-EUfr": "ayu",
"name-USfr": "ayu",
"name-EUit": "ayu",
"name-EUnl": "ayu",
"name-CNzh": "香鱼",
"name-TWzh": "香魚",
"name-JPja": "アユ",
"name-KRko": "은어",
"name-EUru": "айю"
},
"availability": {
"month-northern": "7-9",
"month-southern": "1-3",
"time": "",