This repository was archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathsea.json
More file actions
1482 lines (1482 loc) · 74.4 KB
/
sea.json
File metadata and controls
1482 lines (1482 loc) · 74.4 KB
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
{
"seaweed": {
"id": 1,
"file-name": "seaweed",
"name": {
"name-USen": "seaweed",
"name-EUen": "seaweed",
"name-EUnl": "zeewier",
"name-EUde": "Wakame-Alge",
"name-EUes": "alga wakame",
"name-USes": "alga wakame",
"name-EUfr": "wakame",
"name-USfr": "wakamé",
"name-EUit": "alga wakame",
"name-CNzh": "裙带菜",
"name-TWzh": "裙帶菜",
"name-JPja": "ワカメ",
"name-KRko": "미역",
"name-EUru": "морские водоросли"
},
"availability": {
"month-northern": "10-7",
"month-southern": "4-1",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [10, 11, 12, 1, 2, 3, 4, 5, 6, 7],
"month-array-southern": [4, 5, 6, 7, 8, 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]
},
"speed": "Stationary",
"shadow": "Large",
"price": 600,
"catch-phrase": "I got some seaweed! I couldn't kelp myself.",
"image_uri": "https://acnhapi.com/v1/images/sea/1",
"icon_uri": "https://acnhapi.com/v1/icons/sea/1",
"museum-phrase": "Let it be known that seaweed is a misnomer of the highest order! That is, it is not a noxious weed so much as it is a marine algae most beneficial to life on land and sea. Seaweed, you see, provides essential habitat and food for all manner of marine creatures. And it creates a great deal of the oxygen we land lovers love to breath too, hoo! And yet, I can't help but shudder when the slimy stuff touches my toes during a swim. Hoot! The horror!"
},
"sea_grapes": {
"id": 2,
"file-name": "sea_grapes",
"name": {
"name-USen": "sea grapes",
"name-EUen": "sea grapes",
"name-EUnl": "zeedruiven",
"name-EUde": "Kriechsprossalge",
"name-EUes": "uva de mar",
"name-USes": "uva de mar",
"name-EUfr": "algue raisin de mer",
"name-USfr": "algue raisin de mer",
"name-EUit": "vite di mare",
"name-CNzh": "海葡萄",
"name-TWzh": "海葡萄",
"name-JPja": "ウミブドウ",
"name-KRko": "바다포도",
"name-EUru": "морской виноград"
},
"availability": {
"month-northern": "6-9",
"month-southern": "12-3",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [6, 7, 8, 9],
"month-array-southern": [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]
},
"speed": "Stationary",
"shadow": "Small",
"price": 900,
"catch-phrase": "I got some sea grapes! Can't let these go sour.",
"image_uri": "https://acnhapi.com/v1/images/sea/2",
"icon_uri": "https://acnhapi.com/v1/icons/sea/2",
"museum-phrase": "Sea grapes are a marine algae that look much like their landlocked namesake. That is, they are green pearl-like orbs that cluster tightly along underwater vines. And sea grapes, like regular grapes, are a popular snack food too... albeit of the saltier variety. Fans of the briny delicacy enjoy the way the shiny pearls POP when chewed. It makes one wonder whether sea grape juice might have some appeal? 'Twould leave the drinker with sour grapes, I suppose."
},
"sea_cucumber": {
"id": 3,
"file-name": "sea_cucumber",
"name": {
"name-USen": "sea cucumber",
"name-EUen": "sea cucumber",
"name-EUde": "Seegurke",
"name-EUnl": "zeekomkommer",
"name-EUes": "pepino de mar",
"name-USes": "pepino de mar",
"name-EUfr": "concombre de mer",
"name-USfr": "concombre de mer",
"name-EUit": "cetriolo di mare",
"name-CNzh": "海参",
"name-TWzh": "海參",
"name-JPja": "ナマコ",
"name-KRko": "해삼",
"name-EUru": "морской огурец"
},
"availability": {
"month-northern": "11-4",
"month-southern": "5-10",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [11, 12, 1, 2, 3, 4],
"month-array-southern": [5, 6, 7, 8, 9, 10],
"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]
},
"speed": "Very slow",
"shadow": "Medium",
"price": 500,
"catch-phrase": "I got a sea cucumber! It's a bit cumbersome",
"image_uri": "https://acnhapi.com/v1/images/sea/3",
"icon_uri": "https://acnhapi.com/v1/icons/sea/3",
"museum-phrase": "The sea cucumber, much like its relatives the sea urchin and sea star, has no heart nor brain. However, unlike its relatives, it has no shell nor spikes to with which to protect itself either. So how does a softy such as this stay safe in the open ocean? Brace yourself I say… when threatened sea cucumbers jettison their innards out of their backsides! Hoo! Gross but true! The sticky, stringy stuff ensnares predators, allowing the cuke to make its escape and grow its insides back. One might say…the sea cucumber is a GUTSY creature, indeed. Hoo hoo, hee hee! Do forgive me!"
},
"sea_pig": {
"id": 4,
"file-name": "sea_pig",
"name": {
"name-USen": "sea pig",
"name-EUen": "sea pig",
"name-EUde": "Scotoplanes",
"name-EUnl": "zeevarken",
"name-EUes": "cerdo de mar",
"name-USes": "cerdo de mar",
"name-EUfr": "cochon de mer",
"name-USfr": "cochon de mer",
"name-EUit": "porcellino di mare",
"name-CNzh": "海猪",
"name-TWzh": "海豬",
"name-JPja": "センジュナマコ",
"name-KRko": "바다돼지",
"name-EUru": "скотопланес"
},
"availability": {
"month-northern": "11-2",
"month-southern": "5-8",
"time": "4pm - 9am",
"isAllDay": false,
"isAllYear": false,
"month-array-northern": [11, 12, 1, 2],
"month-array-southern": [5, 6, 7, 8],
"time-array": [16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8]
},
"speed": "Very fast",
"shadow": "Small",
"price": 10000,
"catch-phrase": "I got a sea pig! What's next? Air pigs?",
"image_uri": "https://acnhapi.com/v1/images/sea/4",
"icon_uri": "https://acnhapi.com/v1/icons/sea/4",
"museum-phrase": "Never have I seen a creature that walks the line between creepy and cute quite like the sea pig does. Sea pigs are, in fact, a type of sea cucumber that lives deep down on the ocean floor. About four inches long, these soft pinkish oddities use tube-like legs and feelers to get around. Thus they snuffle through the mud, slurping up particles from decaying carcasses. Meanwhile, predators be warned... This little piggy tastes like poison."
},
"sea_star": {
"id": 5,
"file-name": "sea_star",
"name": {
"name-USen": "sea star",
"name-EUen": "sea star",
"name-EUnl": "zeester",
"name-EUde": "Seestern",
"name-EUes": "estrella de mar",
"name-USes": "estrella de mar",
"name-EUfr": "étoile de mer",
"name-USfr": "étoile de mer",
"name-EUit": "stella marina",
"name-CNzh": "海星",
"name-TWzh": "海星",
"name-JPja": "ヒトデ",
"name-KRko": "불가사리",
"name-EUru": "морская звезда"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "",
"isAllDay": true,
"isAllYear": true,
"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]
},
"speed": "Very slow",
"shadow": "Small",
"price": 500,
"catch-phrase": "I got a sea star! Maybe it'll give me an autograph!",
"image_uri": "https://acnhapi.com/v1/images/sea/5",
"icon_uri": "https://acnhapi.com/v1/icons/sea/5",
"museum-phrase": "The sea star may appear to have five feet...but those are, in fact, its arms. And though five-armed sea stars are the most common, there are species with 20 or even 40 arms out there! Ah, but the fascinating appendage fats do not end there, wot wot! You see upon each sea star's arm sprout many dozens of tiny feet. YES, FEET! They use these suction-cupped feet not just to move about...but to...eh... grab hold of dinner guests as well. Finally, it should be noted that when a sea star loses an arm, it can grow it back. More impressive yes, a served sea star arm...can sometimes grow an entire sea star body back!"
},
"sea_urchin": {
"id": 6,
"file-name": "sea_urchin",
"name": {
"name-USen": "sea urchin",
"name-EUen": "sea urchin",
"name-EUde": "Seeigel",
"name-EUnl": "zee-egel",
"name-EUes": "erizo de mar",
"name-USes": "erizo de mar",
"name-EUfr": "oursin",
"name-USfr": "oursin",
"name-EUit": "riccio di mare",
"name-CNzh": "海胆",
"name-TWzh": "海膽",
"name-JPja": "ウニ",
"name-KRko": "성게",
"name-EUru": "морской еж"
},
"availability": {
"month-northern": "5-9",
"month-southern": "11-3",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [5, 6, 7, 8, 9],
"month-array-southern": [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]
},
"speed": "Slow",
"shadow": "Small",
"price": 1700,
"catch-phrase": "I got a sea urchin! Wasn't even 'earchin for it.",
"image_uri": "https://acnhapi.com/v1/images/sea/6",
"icon_uri": "https://acnhapi.com/v1/icons/sea/6",
"museum-phrase": "Ah, the sea urchin...the unabashed goth of the ocean floor! Indeed, with its mane of dark-hued spikes, it looks for all the world as if it might front a punk-rock band. Perhaps its more demure relatives—the sea cucumber and the sea star—disapprove of its outlandish look? It would certainly explain why sea stars gobble up sea urchins every chance they get! But worry not for our spiky friend. Its venomous spines are an effective deterrent to many a predator."
},
"slate_pencil_urchin": {
"id": 7,
"file-name": "slate_pencil_urchin",
"name": {
"name-USen": "slate pencil urchin",
"name-EUen": "slate pencil urchin",
"name-EUde": "Griffelseeigel",
"name-EUnl": "griffelzee-egel",
"name-EUes": "erizo lápiz de pizarra",
"name-USes": "erizo lápiz de pizarra",
"name-EUfr": "oursin crayon",
"name-USfr": "oursin crayon",
"name-EUit": "riccio matita",
"name-CNzh": "石笔海胆",
"name-TWzh": "石筆海膽",
"name-JPja": "パイプウニ",
"name-KRko": "연필성게",
"name-EUru": "грифельный морск. еж"
},
"availability": {
"month-northern": "5-9",
"month-southern": "11-3",
"time": "4pm - 9am",
"isAllDay": false,
"isAllYear": false,
"month-array-northern": [5, 6, 7, 8, 9],
"month-array-southern": [11, 12, 1, 2, 3],
"time-array": [16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8]
},
"speed": "Medium",
"shadow": "Medium",
"price": 2000,
"catch-phrase": "I got a slate pencil urchin! Its handwriting is gorgeous.",
"image_uri": "https://acnhapi.com/v1/images/sea/7",
"icon_uri": "https://acnhapi.com/v1/icons/sea/7",
"museum-phrase": "Slate Pencil Urchins are a type of sea urchin topped with thick, rounded spines that resemble sticks of chalk. These urchins' spines protect them not only from predators but from violent waves as well. Found in coral reefs, they're usually bright red, brown, or purple in color. For all those bright colors, one would think the slate pencil urchin to be deadly. But all those pretty colors, it seems, are just a pretty show."
},
"sea_anemone": {
"id": 8,
"file-name": "sea_anemone",
"name": {
"name-USen": "sea anemone",
"name-EUen": "sea anemone",
"name-EUde": "Seeanemone",
"name-EUnl": "zeeanemoon",
"name-EUes": "anémona",
"name-USes": "anémona",
"name-EUfr": "anémone de mer",
"name-USfr": "anémone de mer",
"name-EUit": "anemone di mare",
"name-CNzh": "海葵",
"name-TWzh": "海葵",
"name-JPja": "イソギンチャク",
"name-KRko": "말미잘",
"name-EUru": "актиния"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "",
"isAllDay": true,
"isAllYear": true,
"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]
},
"speed": "Stationary",
"shadow": "Large",
"price": 500,
"catch-phrase": "I got a sea anemone! The enemy of my anemone is my afrenome!",
"image_uri": "https://acnhapi.com/v1/images/sea/8",
"icon_uri": "https://acnhapi.com/v1/icons/sea/8",
"museum-phrase": "Medusa herself would be impressed by the sea anemone. This pretty predator loves to wave its colorful flowing locks about. But these gorgeous tresses are, in fact, deadly tentacles surrounding a hungry mouth! Triggered by the slightest touch, these tentacles harpoon victims with neurotoxin. The sea anemone then pulls the helpless, hapless prey into its mouth for a spot of lunch! I say, let this be a lesson! Never, ever make an enemy... out of an anemone!"
},
"moon_jellyfish": {
"id": 9,
"file-name": "moon_jellyfish",
"name": {
"name-USen": "moon jellyfish",
"name-EUen": "moon jellyfish",
"name-EUde": "Ohrenqualle",
"name-EUnl": "oorkwal",
"name-EUes": "medusa luna",
"name-USes": "medusa luna",
"name-EUfr": "méduse lune",
"name-USfr": "méduse lune",
"name-EUit": "medusa aurelia",
"name-CNzh": "海月水母",
"name-TWzh": "海月水母",
"name-JPja": "ミズクラゲ",
"name-KRko": "보름달물해파리",
"name-EUru": "ушастая аурелия"
},
"availability": {
"month-northern": "7-9",
"month-southern": "1-3",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [7, 8, 9],
"month-array-southern": [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]
},
"speed": "Very slow",
"shadow": "Small",
"price": 600,
"catch-phrase": "I got a moon jellyfish! Now to find a sun peanutbutterfish.",
"image_uri": "https://acnhapi.com/v1/images/sea/9",
"icon_uri": "https://acnhapi.com/v1/icons/sea/9",
"museum-phrase": "Ah, the moon jellyfish...what's not to love about this pretty floating flower of the sea... Well, I suppose its tentacles do give a sting when touched...but it's only a mild thing to the likes of us. Other creatures may not be so fond of this translucent beauty. Though who can blame them, really? Moon jellyfish have stinging cells called cnidocytes that kill fish and other small critters that float by. And they use their \"oral arms\" to pull these morsels into their mouths and stomachs. Indeed, one need but observe the moon jellyfish to see how brutal AND beautiful nature can be."
},
"sea_slug": {
"id": 10,
"file-name": "sea_slug",
"name": {
"name-USen": "sea slug",
"name-EUen": "sea slug",
"name-EUde": "Nacktkiemer",
"name-EUnl": "zeeslak",
"name-EUes": "babosa de mar",
"name-USes": "babosa de mar",
"name-EUfr": "limace de mer",
"name-USfr": "limace de mer",
"name-EUit": "nudibranchi",
"name-CNzh": "海蛞蝓",
"name-TWzh": "海蛞蝓",
"name-JPja": "ウミウシ",
"name-KRko": "갯민숭달팽이",
"name-EUru": "голожаберник"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "",
"isAllDay": true,
"isAllYear": true,
"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]
},
"speed": "Very slow",
"shadow": "Smallest",
"price": 600,
"catch-phrase": "I got a sea slug! It's kinda salty about that.",
"image_uri": "https://acnhapi.com/v1/images/sea/10",
"icon_uri": "https://acnhapi.com/v1/icons/sea/10",
"museum-phrase": "Imagine, if you will, a land slug...but one dressed in frilly attire full of bold colors, stripes, and spots! That is the sea slug, a gastropod that looks ready to walk the red carpet...or perform beneath a big top. But these clowns are no laughing matter, eh wot. Their garish colors and wild patterns warn predators to steer clear of their stinging, toxic taste. And THAT is how you dress for success, as they say!"
},
"pearl_oyster": {
"id": 11,
"file-name": "pearl_oyster",
"name": {
"name-USen": "pearl oyster",
"name-EUen": "pearl oyster",
"name-EUde": "Perlmuschel",
"name-EUnl": "pareloester",
"name-EUes": "ostra perlera",
"name-USes": "ostra perlera",
"name-EUfr": "huître perlière",
"name-USfr": "huître perlière",
"name-EUit": "ostrica pinctada",
"name-CNzh": "马氏珠母贝",
"name-TWzh": "珠母蛤",
"name-JPja": "アコヤガイ",
"name-KRko": "진주조개",
"name-EUru": "жемчужница"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "",
"isAllDay": true,
"isAllYear": true,
"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]
},
"speed": "Medium",
"shadow": "Small",
"price": 2800,
"catch-phrase": "I got a pearl oyster! Aw, shucks. Don't clam up now!",
"image_uri": "https://acnhapi.com/v1/images/sea/11",
"icon_uri": "https://acnhapi.com/v1/icons/sea/11",
"museum-phrase": "Hoo, indeed, hoot! What a splendid pearl oyster! Did you know the famed pearl oyster can live for 40 years and grow up to a foot in size? 'Tis true, hootie-hoo! Of course, this briny bivalve is best known for the precious gems it grows within. The pearl-making process begins when an irritant gains access to the delicate insides of the oyster. The intruder is then covered with layer upon layer of \"nacre,\" the same substance used to create its shell. It takes years for a pearl to form, but in the end, the irritant is rendered harmless. Ahh, if only we all had the power to turn things that annoy us... into things of beauty instead."
},
"mussel": {
"id": 12,
"file-name": "mussel",
"name": {
"name-USen": "mussel",
"name-EUen": "mussel",
"name-EUde": "Miesmuschel",
"name-EUnl": "mossel",
"name-EUes": "mejillón",
"name-USes": "mejillón",
"name-EUfr": "moule",
"name-USfr": "moule",
"name-EUit": "cozza",
"name-CNzh": "贻贝",
"name-TWzh": "貽貝",
"name-JPja": "ムールガイ",
"name-KRko": "지중해담치",
"name-EUru": "мидия"
},
"availability": {
"month-northern": "6-12",
"month-southern": "12-6",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [6, 7, 8, 9, 10, 11, 12],
"month-array-southern": [12, 1, 2, 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]
},
"speed": "Slow",
"shadow": "Small",
"price": 1500,
"catch-phrase": "I got a mussel! It's been working out",
"image_uri": "https://acnhapi.com/v1/images/sea/12",
"icon_uri": "https://acnhapi.com/v1/icons/sea/12",
"museum-phrase": "Did you know the mussel has a beard?! Hoo! It's true! Well, partially true, anyway. Mussels have a special gland that secretes a thing called \"bysuss\" or \"byssal thread.\" They use these tough beard-like fibers to anchor themselves to rocks and keep themselves in place. So, you see, the mussel's beard is functional rather than merely stylish. Then again, perhaps all beards should be this way."
},
"oyster": {
"id": 13,
"file-name": "oyster",
"name": {
"name-USen": "oyster",
"name-EUen": "oyster",
"name-EUde": "Auster",
"name-EUnl": "oester",
"name-EUes": "ostra",
"name-USes": "ostra",
"name-EUfr": "huître",
"name-USfr": "huître",
"name-EUit": "ostrica",
"name-CNzh": "牡蛎",
"name-TWzh": "牡蠣",
"name-JPja": "オイスター",
"name-KRko": "굴",
"name-EUru": "устрица"
},
"availability": {
"month-northern": "9-2",
"month-southern": "3-8",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [9, 10, 11, 12, 1, 2],
"month-array-southern": [3, 4, 5, 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]
},
"speed": "Slow",
"shadow": "Small",
"price": 1100,
"catch-phrase": "I got an oyster! It's a little shellfish.",
"image_uri": "https://acnhapi.com/v1/images/sea/13",
"icon_uri": "https://acnhapi.com/v1/icons/sea/13",
"museum-phrase": "Oysters are marvelous mollusks and, in many ways, the social butterflies of the seas. That is, these bivalves tend to live attached to rocks in large groups known as oyster beds. These reef-like structures provide home and habitat for a delightful variety of creatures. Mussels, barnacles, and sea anemones have all been known to set up house. Meanwhile, small fish and crabs hide from predators and even raise their young among the snuggling oysters. With all the hubbub, an oyster bed sounds like the last place one would get some sleep!"
},
"scallop": {
"id": 14,
"file-name": "scallop",
"name": {
"name-USen": "scallop",
"name-EUen": "scallop",
"name-EUde": "Kammmuschel",
"name-EUnl": "mantelschelp",
"name-EUes": "vieira",
"name-USes": "vieira",
"name-EUfr": "pétoncle",
"name-USfr": "pétoncle",
"name-EUit": "capasanta",
"name-CNzh": "虾夷扇贝",
"name-TWzh": "帆立貝",
"name-JPja": "ホタテ",
"name-KRko": "가리비",
"name-EUru": "гребешок"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "",
"isAllDay": true,
"isAllYear": true,
"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]
},
"speed": "Slow",
"shadow": "Medium",
"price": 1200,
"catch-phrase": "I got a scallop! It otter be savored.",
"image_uri": "https://acnhapi.com/v1/images/sea/14",
"icon_uri": "https://acnhapi.com/v1/icons/sea/14",
"museum-phrase": "Ah, the scallop! It just goes to show, you can't keep a good bivalve down. While most members of its family are known for staying put, the scallop is a nimble fellow indeed. When a hungry sea star approaches, the scallop can swim away by clap-clap-clapping its shells together! \"How does a scallop know when a predator approaches?\" you ask. Why, it has 200 eyes to see with! It makes one wonder what else the scallop sees with all those eyes... I fear it sees into my very soul!"
},
"whelk": {
"id": 15,
"file-name": "whelk",
"name": {
"name-USen": "whelk",
"name-EUen": "whelk",
"name-EUde": "Babylon-Seeschnecke",
"name-EUnl": "wulk",
"name-EUes": "buccino",
"name-USes": "buccino",
"name-EUfr": "bulot",
"name-USfr": "bulot",
"name-EUit": "buccino",
"name-CNzh": "花螺",
"name-TWzh": "峨螺",
"name-JPja": "バイガイ",
"name-KRko": "수랑",
"name-EUru": "моллюск-трубач"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "",
"isAllDay": true,
"isAllYear": true,
"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]
},
"speed": "Slow",
"shadow": "Small",
"price": 1000,
"catch-phrase": "I got a whelk! Happy snails to ya.",
"image_uri": "https://acnhapi.com/v1/images/sea/15",
"icon_uri": "https://acnhapi.com/v1/icons/sea/15",
"museum-phrase": "Whelks are sea snails that migrate from deep water to shallow water when the weather changes. Avid carnivores, they feed on worms, crustaceans, and mollusks. In fact, these wily snails have been known to use their own shells to pry open the shells of their victims! They then use a rough tongue-like organ with thousands of tiny teeth to lick their victims' shells clean. Eh... you might want to put that image out of your mind when it's your turn to dine."
},
"turban_shell": {
"id": 16,
"file-name": "turban_shell",
"name": {
"name-USen": "turban shell",
"name-EUen": "turban shell",
"name-EUde": "Turbanschnecke",
"name-EUnl": "tulbandschelp",
"name-EUes": "caracola espinosa",
"name-USes": "caracola espinosa",
"name-EUfr": "turbo",
"name-USfr": "turbo",
"name-EUit": "lumaca turbante",
"name-CNzh": "角蝾螺",
"name-TWzh": "角蠑螺",
"name-JPja": "サザエ",
"name-KRko": "소라",
"name-EUru": "рогатый тюрбан"
},
"availability": {
"month-northern": "3-5 & 9-12",
"month-southern": "3-6 & 9-11",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [3, 4, 5, 9, 10, 11, 12],
"month-array-southern": [3, 4, 5, 6, 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]
},
"speed": "Slow",
"shadow": "Small",
"price": 1000,
"catch-phrase": "I got a turban shell! It's totally TURB...ular!",
"image_uri": "https://acnhapi.com/v1/images/sea/16",
"icon_uri": "https://acnhapi.com/v1/icons/sea/16",
"museum-phrase": "The turban shell is a sea snail with a rather nifty trick up its sleeve...er, shell. You see, this snail carries a hard, round, button-like \"operculum\" with it wherever it goes. What is an operculum, you ask? Why, it is a trapdoor of sorts! When danger approaches, the snail slips into its shell and pulls this trapdoor closed over the opening. Thus it is locked safe and sound inside. And bravo, I say! Bravo! When trouble comes knocking, just do what the turban shell does. Shut the door and turn out the lights!"
},
"abalone": {
"id": 17,
"file-name": "abalone",
"name": {
"name-USen": "abalone",
"name-EUen": "abalone",
"name-EUde": "Seeohr",
"name-EUnl": "abalone",
"name-EUes": "abulón",
"name-USes": "abulón",
"name-EUfr": "ormeau",
"name-USfr": "ormeau",
"name-EUit": "abalone",
"name-CNzh": "鲍鱼",
"name-TWzh": "鮑魚",
"name-JPja": "アワビ",
"name-KRko": "전복",
"name-EUru": "абалон"
},
"availability": {
"month-northern": "6-1",
"month-southern": "12-7",
"time": "4pm - 9am",
"isAllDay": false,
"isAllYear": false,
"month-array-northern": [6, 7, 8, 9, 10, 11, 12, 1],
"month-array-southern": [12, 1, 2, 7, 4, 5, 6, 7],
"time-array": [16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8]
},
"speed": "Medium",
"shadow": "Medium",
"price": 2000,
"catch-phrase": "I got an abalone! Why do I want a sandwich now?",
"image_uri": "https://acnhapi.com/v1/images/sea/17",
"icon_uri": "https://acnhapi.com/v1/icons/sea/17",
"museum-phrase": "My feathers, but the abalone is a most deceptive sea snail, wot wot! After seeing its dull brown shell from the outside, one would think it quite plain.But take a gander inside, and you'll see that the abalone's home is a shimmering beauty to behold! The inner layer of the shell is made of \"nacre,\" or \"mother-of-pearl,\" and, hoo, what a dazzling iridescent hue! Let this be a lesson! You mustn't judge a sea snail by the outside of its shell. Judge it by the inside of its shell instead."
},
"gigas_giant_clam": {
"id": 18,
"file-name": "gigas_giant_clam",
"name": {
"name-USen": "gigas giant clam",
"name-EUen": "gigas giant clam",
"name-EUde": "Gigas-Riesenmuschel",
"name-EUnl": "reuzendoopvontschelp",
"name-EUes": "taclobo gigante",
"name-USes": "taclobo gigante",
"name-EUfr": "bénitier colossal",
"name-USfr": "bénitier colossal",
"name-EUit": "tridacna gigante",
"name-CNzh": "大砗磲",
"name-TWzh": "大硨磲",
"name-JPja": "オオシャコガイ",
"name-KRko": "대왕거거",
"name-EUru": "гигантская тридакна"
},
"availability": {
"month-northern": "5-9",
"month-southern": "11-3",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [5, 6, 7, 8, 9],
"month-array-southern": [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]
},
"speed": "Very fast",
"shadow": "Largest",
"price": 15000,
"catch-phrase": "I got a gigas giant clam! It's kind of a big deal.",
"image_uri": "https://acnhapi.com/v1/images/sea/18",
"icon_uri": "https://acnhapi.com/v1/icons/sea/18",
"museum-phrase": "Gigas giant clams live in warm-water coral reefs and are the biggest bivalves in the world. Growing as wide as six feet and weighing up to 600 pounds, these clams can live to be 100 years old. And yes, these mighty creatures look as though they could eat a swimmer whole. But they eat plankton instead and get valuable nutrients from an algae they live in symbiosis with. Indeed, these enormous gents get all the sustenance they need by lying face up with their shells half-open. If such was my life, I'd be happy as a clam too."
},
"chambered_nautilus": {
"id": 19,
"file-name": "chambered_nautilus",
"name": {
"name-USen": "chambered nautilus",
"name-EUen": "chambered nautilus",
"name-EUde": "Perlboot",
"name-EUnl": "nautilus",
"name-EUes": "nautilo",
"name-USes": "nautilo",
"name-EUfr": "nautile",
"name-USfr": "nautile",
"name-EUit": "nautilus",
"name-CNzh": "鹦鹉螺",
"name-TWzh": "鸚鵡螺",
"name-JPja": "オウムガイ",
"name-KRko": "앵무조개",
"name-EUru": "наутилус"
},
"availability": {
"month-northern": "3-6 & 9-11",
"month-southern": "3-5 & 9-12",
"time": "4pm - 9am",
"isAllDay": false,
"isAllYear": false,
"month-array-northern": [3, 4, 5, 6, 9, 10, 11],
"month-array-southern": [3, 4, 5, 9, 10, 11, 12],
"time-array": [16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8]
},
"speed": "Medium",
"shadow": "Medium",
"price": 1800,
"catch-phrase": "I got a chambered nautilus! Is it on the naughty list?",
"image_uri": "https://acnhapi.com/v1/images/sea/19",
"icon_uri": "https://acnhapi.com/v1/icons/sea/19",
"museum-phrase": "The chambered nautilus is perhaps best known for its gorgeous shell. Not only does this shell's interior shine with a pearly luster, it features a near-perfect natural spiral. But those aren't the chambered nautilus's only bragging rights. This cephalopod can have up to 90 tentacles, it's said! These arms come coated with a sticky substance that helps the nautilus capture its prey...Which is far better than using them for overly long hugs, I say."
},
"octopus": {
"id": 20,
"file-name": "octopus",
"name": {
"name-USen": "octopus",
"name-EUen": "octopus",
"name-EUde": "Oktopus",
"name-EUnl": "octopus",
"name-EUes": "pulpo",
"name-USes": "pulpo",
"name-EUfr": "poulpe",
"name-USfr": "pieuvre",
"name-EUit": "polpo",
"name-CNzh": "章鱼",
"name-TWzh": "章魚",
"name-JPja": "タコ",
"name-KRko": "문어",
"name-EUru": "осьминог"
},
"availability": {
"month-northern": "",
"month-southern": "",
"time": "",
"isAllDay": true,
"isAllYear": true,
"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]
},
"speed": "Slow",
"shadow": "Medium",
"price": 1200,
"catch-phrase": "I got an octopus! It can give four hugs at once!",
"image_uri": "https://acnhapi.com/v1/images/sea/20",
"icon_uri": "https://acnhapi.com/v1/icons/sea/20",
"museum-phrase": "With its eight limbs, three hearts, and surprisingly big brain, the octopus is quite the wonder. It is also an escape artist like no other! You see, the octopus has specialized skin cells that can change color and texture with lightening speed. Thus it can look for all the world like a patch of seabed one minute...and a pile of rocks the next! But the deception doesn't stop there, wot wot. When attacked by a predator, the octopus releases a cloud of ink and -POOF- makes its escape. Let's just call the octopus what it is, shall we? The ninja of the deep!"
},
"umbrella_octopus": {
"id": 21,
"file-name": "umbrella_octopus",
"name": {
"name-USen": "umbrella octopus",
"name-EUen": "umbrella octopus",
"name-EUde": "Regenschirm-Oktopus",
"name-EUnl": "depressa-inktvis",
"name-EUes": "pulpo paraguas",
"name-USes": "pulpo paraguas",
"name-EUfr": "pieuvre parapluie",
"name-USfr": "pieuvre parapluie",
"name-EUit": "polpo ombrello",
"name-CNzh": "扁面蛸",
"name-TWzh": "扁面蛸",
"name-JPja": "メンダコ",
"name-KRko": "우무문어",
"name-EUru": "опистотейтис"
},
"availability": {
"month-northern": "3-5 & 9-11",
"month-southern": "3-5 & 9-11",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [3, 4, 5, 9, 10, 11],
"month-array-southern": [3, 4, 5, 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]
},
"speed": "Fast",
"shadow": "Small",
"price": 6000,
"catch-phrase": "I got an umbrella octopus! Too bad I'm already soaked.",
"image_uri": "https://acnhapi.com/v1/images/sea/21",
"icon_uri": "https://acnhapi.com/v1/icons/sea/21",
"museum-phrase": "My feathers, could there be a more adorable sea creature than the umbrella octopus? I daresay not! These deep-sea octopuses are on the smallish side and use the cutest ear-like fins to flutter about. Meanwhile, it's the web stretched between their tentacles that gives them their name. Hoo, it's true! With arms stretched wide, they look for all the world like an umbrella! Though surely the last thing the umbrella octopus wants...is to stay dry."
},
"vampire_squid": {
"id": 22,
"file-name": "vampire_squid",
"name": {
"name-USen": "vampire squid",
"name-EUen": "vampire squid",
"name-EUde": "Vampirtintenfisch",
"name-EUnl": "vampierinktvis",
"name-EUes": "calamar vampiro",
"name-USes": "calamar vampiro",
"name-EUfr": "vampire des abysses",
"name-USfr": "vampire des abysses",
"name-EUit": "calamaro vampiro",
"name-CNzh": "吸血鬼乌贼",
"name-TWzh": "吸血烏賊",
"name-JPja": "コウモリダコ",
"name-KRko": "흡혈오징어",
"name-EUru": "адский кальмар-вампир"
},
"availability": {
"month-northern": "5-8",
"month-southern": "11-2",
"time": "4pm - 9am",
"isAllDay": false,
"isAllYear": false,
"month-array-northern": [5, 6, 7, 8],
"month-array-southern": [11, 12, 1, 2],
"time-array": [16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8]
},
"speed": "Very fast",
"shadow": "Medium",
"price": 10000,
"catch-phrase": "I got a vampire squid! A lot was at stake.",
"image_uri": "https://acnhapi.com/v1/images/sea/22",
"icon_uri": "https://acnhapi.com/v1/icons/sea/22",
"museum-phrase": "Beware the vampire squid, I say! This eight-armed deep-sea monster is out to drink your blood! Hoo hoo, ha ha! I only jest! Ahem! The Vampire Squid does, in fact, live deep in the ocean where almost no light pervades. But while it looks like it could nibble on your neck...it nibbles on the bits of dead plankton and algae instead. By all accounts, the vampire squid is a a gentle sort who squirts bioluminecesant goo at foes. Sp, how did it get the eerie official name \"Vampyroteuthis inernalis\"? That means \"vampire squid from the heck,\" you see. The problem is that the squid's \"cloak.\" Its arms are webbed with velvet-red skin and lined with toothy spikes. Plainly put, this genial squid looks for all the world like a vampire who went for a swim."
},
"firefly_squid": {
"id": 23,
"file-name": "firefly_squid",
"name": {
"name-USen": "firefly squid",
"name-EUen": "firefly squid",
"name-EUde": "Leuchtkalmar",
"name-EUnl": "vuurvliegpijlinktvis",
"name-EUes": "calamar luciérnaga",
"name-USes": "calamar luciérnaga",
"name-EUfr": "calmar luciole",
"name-USfr": "calmar luciole",
"name-EUit": "calamaro lucciola",
"name-CNzh": "萤火鱿",
"name-TWzh": "螢火魷",
"name-JPja": "ホタルイカ",
"name-KRko": "반딧불오징어",
"name-EUru": "сверкающий кальмар"
},
"availability": {
"month-northern": "3-6",
"month-southern": "9-12",
"time": "9pm - 4am",
"isAllDay": false,
"isAllYear": false,
"month-array-northern": [3, 4, 5, 6],
"month-array-southern": [9, 10, 11, 12],
"time-array": [21, 22, 23, 0, 1, 2, 3]
},
"speed": "Slow",
"shadow": "Smallest",
"price": 1400,
"catch-phrase": "I got a firefly squid! More like a glowswim squid.",
"image_uri": "https://acnhapi.com/v1/images/sea/23",
"icon_uri": "https://acnhapi.com/v1/icons/sea/23",
"museum-phrase": "The firefly squid is a wee migratory squid that barely reaches three inches in length. And though they usually live in deep water, they do venture to the coast to spawn. Like their firefly namesakes, these sparkling squid emit a blue bioluminescent glow. This glow may be used to threaten enemies, communicate with friends, or, perhaps, to lure food in. Truth be told, we do not know for sure why the firefly squid glows. We remain in the dark, as they say."
},
"gazami_crab": {
"id": 24,
"file-name": "gazami_crab",
"name": {
"name-USen": "gazami crab",
"name-EUen": "gazami crab",
"name-EUde": "Gazami-Krabbe",
"name-EUnl": "Japanse blauwe krab",
"name-EUes": "cangrejo gazami",
"name-USes": "cangrejo gazami",
"name-EUfr": "crabe gazami",
"name-USfr": "crabe gazami",
"name-EUit": "granchio gazami",
"name-CNzh": "梭子蟹",
"name-TWzh": "三疣梭子蟹",
"name-JPja": "ガザミ",
"name-KRko": "꽃게",
"name-EUru": "газами-краб"
},
"availability": {
"month-northern": "6-11",
"month-southern": "12-5",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [6, 7, 8, 9, 10, 11],
"month-array-southern": [12, 1, 2, 3, 4, 5],
"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]
},
"speed": "Medium",
"shadow": "Medium",
"price": 2200,
"catch-phrase": "I got a gazami crab! What a gripping find!",
"image_uri": "https://acnhapi.com/v1/images/sea/24",
"icon_uri": "https://acnhapi.com/v1/icons/sea/24",
"museum-phrase": "The gazami crab may be better known by its more descriptive name… the Japanese blue crab. It gets its name from the blue tint sometimes found in its shell and legs. Its paddle-like rear legs are what help it to swim freely and quickly through the water. Of course, this gazami crab couldn't swim enough to get away from you!"
},
"dungeness_crab": {
"id": 25,
"file-name": "dungeness_crab",
"name": {
"name-USen": "Dungeness crab",
"name-EUen": "Dungeness crab",
"name-EUde": "Pazifik-Taschenkrebs",
"name-EUnl": "Dungeness-krab",
"name-EUes": "buey del Pacífico",
"name-USes": "buey del Pacífico",
"name-EUfr": "crabe de Dungeness",
"name-USfr": "crabe de Dungeness",
"name-EUit": "granciporro",
"name-CNzh": "珍宝蟹",
"name-TWzh": "首長黃道蟹",
"name-JPja": "ダンジネスクラブ",
"name-KRko": "던지니스크랩",
"name-EUru": "данженесский краб"
},
"availability": {
"month-northern": "11-5",
"month-southern": "5-11",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [11, 12, 1, 2, 3, 4, 5],
"month-array-southern": [5, 6, 7, 8, 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]
},
"speed": "Medium",
"shadow": "Medium",
"price": 1900,
"catch-phrase": "I got a Dungeness crab! Dun dun duuuun...geness.",
"image_uri": "https://acnhapi.com/v1/images/sea/25",
"icon_uri": "https://acnhapi.com/v1/icons/sea/25",
"museum-phrase": "The Dungeness crab wears a pretty fan-shaped shell that's often done up in purple hues. But eye-catching colors aside, this fellow can be surprisingly hard to spot! That's because the Dungeness crab is something of an expert hider. When scared, it plays a nifty trick! That is, it buries itself beneath the sand with impressive speed. \"Now you see me, now you don't,\" it says as it vanishes before your very eyes!"
},
"snow_crab": {
"id": 26,
"file-name": "snow_crab",
"name": {
"name-USen": "snow crab",
"name-EUen": "snow crab",
"name-EUde": "Schneekrabbe",
"name-EUnl": "sneeuwkrab",
"name-EUes": "cangrejo de nieve",
"name-USes": "cangrejo de nieve",
"name-EUfr": "crabe des neiges",
"name-USfr": "crabe des neiges",
"name-EUit": "granchio della neve",
"name-CNzh": "松叶蟹",
"name-TWzh": "松葉蟹",
"name-JPja": "ズワイガニ",
"name-KRko": "대게",
"name-EUru": "краб-стригун"
},
"availability": {
"month-northern": "11-4",
"month-southern": "5-10",
"time": "",
"isAllDay": true,
"isAllYear": false,
"month-array-northern": [11, 12, 1, 2, 3, 4],
"month-array-southern": [5, 6, 7, 8, 9, 10],
"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]
},
"speed": "Fast",
"shadow": "Large",
"price": 6000,
"catch-phrase": "I got a snow crab! It's giving me the cold shoulder.",
"image_uri": "https://acnhapi.com/v1/images/sea/26",
"icon_uri": "https://acnhapi.com/v1/icons/sea/26",
"museum-phrase": "The snow crab truly lives up to its name, wot wot. They are most often found in cold northern seas. Some have even been discovered living in the Arctic Ocean! Indeed, snow crab prefer to live in deep water that never gets more than three degrees above freezing. Hooooo. Just thinking about their icy environs is giving me the chills!"
},
"red_king_crab": {
"id": 27,
"file-name": "red_king_crab",
"name": {
"name-USen": "red king crab",
"name-EUen": "red king crab",
"name-EUde": "Königskrabbe",
"name-EUnl": "rode koningskrab",
"name-EUes": "cangrejo boreal",
"name-USes": "cangrejo boreal",
"name-EUfr": "crabe royal",
"name-USfr": "crabe royal",
"name-EUit": "granchio gigante",
"name-CNzh": "帝王蟹",
"name-TWzh": "鱈場蟹",
"name-JPja": "タラバガニ",
"name-KRko": "왕게",
"name-EUru": "камчатский краб"
},
"availability": {
"month-northern": "11-3",
"month-southern": "5-9",
"time": "",
"isAllDay": true,
"isAllYear": false,
"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]
},
"speed": "Very fast",
"shadow": "Large",
"price": 8000,
"catch-phrase": "I caught a red king crab! It's royally flushed.",
"image_uri": "https://acnhapi.com/v1/images/sea/27",
"icon_uri": "https://acnhapi.com/v1/icons/sea/27",
"museum-phrase": "The red king crab is a mighty crustacean to be sure. Though it must be said that there is some debate about its royal lineage. King crabs, unlike other crabs, are thought to be descended from hermit crabs, you see. And have you noticed... GASP! They have but eight legs, though conventional crabs have 10! It matters not, I say. For the red king crab is as regal as can be. Weighing up to 20 pounds with a leg span reaching five feet... I bow to this crab's nobility."
},