-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.js
8268 lines (8266 loc) · 208 KB
/
data.js
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
// Manually query for data, then convert via https://www.convertsimple.com/convert-json-to-javascript/
// 'https://nookipedia.com/w/api.php?action=cargoquery&format=json&limit=500&tables=nh_villager&fields=name,image_url,species,personality,sub_personality,gender,birthday,sign,quote,catchphrase,clothing,fav_color1,fav_color2,fav_style1,fav_style2'
// Data pulled on 09/11/22
let acnhData = [
{
title: {
name: "Ace",
image_url: "https://dodo.ac/np/images/9/91/Ace_amiibo.png",
species: "Bird",
personality: "Jock",
sub_personality: "A",
gender: "Male",
birthday: "August 11",
sign: "Leo",
quote: "If you love something, let it go. Then chase it down. What were you thinking?",
catchphrase: "ace",
clothing: "Kung-Fu Tee",
fav_color1: "Aqua",
fav_color2: "Green",
fav_style1: "Active",
fav_style2: "Cute",
hobby: "Nature"
}
},
{
title: {
name: "Admiral",
image_url: "https://dodo.ac/np/images/e/ed/Admiral_NH.png",
species: "Bird",
personality: "Cranky",
sub_personality: "A",
gender: "Male",
birthday: "January 27",
sign: "Aquarius",
quote: "Only quitters give up.",
catchphrase: "aye aye",
clothing: "Hanten Jacket",
fav_color1: "Black",
fav_color2: "Blue",
fav_style1: "Cool",
fav_style2: "",
hobby: "Nature"
}
},
{
title: {
name: "Agent S",
image_url: "https://dodo.ac/np/images/a/a7/Agent_S_NH.png",
species: "Squirrel",
personality: "Peppy",
sub_personality: "B",
gender: "Female",
birthday: "July 2",
sign: "Cancer",
quote: "You gotta put the pedal to the metal!",
catchphrase: "sidekick",
clothing: "No. 2 Shirt",
fav_color1: "Blue",
fav_color2: "Black",
fav_style1: "Active",
fav_style2: "Simple",
hobby: "Fitness"
}
},
{
title: {
name: "Agnes",
image_url: "https://dodo.ac/np/images/4/42/Agnes_NH.png",
species: "Pig",
personality: "Big sister",
sub_personality: "A",
gender: "Female",
birthday: "April 21",
sign: "Taurus",
quote: "You reap what you sow.",
catchphrase: "snuffle",
clothing: "Striped Halter Dress",
fav_color1: "Pink",
fav_color2: "White",
fav_style1: "Simple",
fav_style2: "Elegant",
hobby: "Play"
}
},
{
title: {
name: "Al",
image_url: "https://dodo.ac/np/images/c/c4/Al_NH.png",
species: "Gorilla",
personality: "Lazy",
sub_personality: "B",
gender: "Male",
birthday: "October 18",
sign: "Libra",
quote: "Life is a buffet. Always go back for seconds.",
catchphrase: "ayyyeee",
clothing: "Athletic Jacket",
fav_color1: "Red",
fav_color2: "White",
fav_style1: "Active",
fav_style2: "",
hobby: "Fitness"
}
},
{
title: {
name: "Alfonso",
image_url: "https://dodo.ac/np/images/e/e4/Alfonso_NH.png",
species: "Alligator",
personality: "Lazy",
sub_personality: "B",
gender: "Male",
birthday: "June 9",
sign: "Gemini",
quote: "Slow and steady wins the race.",
catchphrase: "it'sa me",
clothing: "Simple Parka",
fav_color1: "Red",
fav_color2: "Blue",
fav_style1: "Simple",
fav_style2: "",
hobby: "Play"
}
},
{
title: {
name: "Alice",
image_url: "https://dodo.ac/np/images/e/e1/Alice_NH.png",
species: "Koala",
personality: "Normal",
sub_personality: "B",
gender: "Female",
birthday: "August 19",
sign: "Leo",
quote: "Treat others as you would like to be treated.",
catchphrase: "guvnor",
clothing: "Striped Maxi Dress",
fav_color1: "Red",
fav_color2: "Pink",
fav_style1: "Cute",
fav_style2: "",
hobby: "Education"
}
},
{
title: {
name: "Alli",
image_url: "https://dodo.ac/np/images/8/8e/Alli_NH.png",
species: "Alligator",
personality: "Snooty",
sub_personality: "B",
gender: "Female",
birthday: "November 8",
sign: "Scorpio",
quote: "Think before you act.",
catchphrase: "graaagh",
clothing: "Leopard Tee",
fav_color1: "Yellow",
fav_color2: "Brown",
fav_style1: "Gorgeous",
fav_style2: "Elegant",
hobby: "Fashion"
}
},
{
title: {
name: "Amelia",
image_url: "https://dodo.ac/np/images/a/ab/Amelia_NH.png",
species: "Eagle",
personality: "Snooty",
sub_personality: "B",
gender: "Female",
birthday: "November 19",
sign: "Scorpio",
quote: "Pampering yourself is as important as food, water, and shelter!",
catchphrase: "cuz",
clothing: "Aran-Knit Sweater",
fav_color1: "Black",
fav_color2: "White",
fav_style1: "Cool",
fav_style2: "Elegant",
hobby: "Music"
}
},
{
title: {
name: "Anabelle",
image_url: "https://dodo.ac/np/images/d/d8/Anabelle_NH.png",
species: "Anteater",
personality: "Peppy",
sub_personality: "B",
gender: "Female",
birthday: "February 16",
sign: "Aquarius",
quote: "Dance like no one's watching!",
catchphrase: "snorty",
clothing: "Bold Muumuu",
fav_color1: "Green",
fav_color2: "Blue",
fav_style1: "Cute",
fav_style2: "Simple",
hobby: "Fashion"
}
},
{
title: {
name: "Anchovy",
image_url: "https://dodo.ac/np/images/e/ea/Anchovy_NH.png",
species: "Bird",
personality: "Lazy",
sub_personality: "B",
gender: "Male",
birthday: "March 4",
sign: "Pisces",
quote: "Why do today what you can put off until tomorrow?",
catchphrase: "chuurp",
clothing: "Yodel Sweater",
fav_color1: "Colorful",
fav_color2: "Orange",
fav_style1: "Simple",
fav_style2: "",
hobby: "Play"
}
},
{
title: {
name: "Angus",
image_url: "https://dodo.ac/np/images/5/5f/Angus_NH.png",
species: "Bull",
personality: "Cranky",
sub_personality: "B",
gender: "Male",
birthday: "April 30",
sign: "Taurus",
quote: "Even strong bulls cry.",
catchphrase: "macmoo",
clothing: "Flame Tee",
fav_color1: "Red",
fav_color2: "Black",
fav_style1: "Cool",
fav_style2: "",
hobby: "Fitness"
}
},
{
title: {
name: "Anicotti",
image_url: "https://dodo.ac/np/images/8/80/Anicotti_NH.png",
species: "Mouse",
personality: "Peppy",
sub_personality: "B",
gender: "Female",
birthday: "February 24",
sign: "Pisces",
quote: "The walls have ears.",
catchphrase: "cannoli",
clothing: "Colorful Striped Sweater",
fav_color1: "Red",
fav_color2: "Pink",
fav_style1: "Simple",
fav_style2: "Elegant",
hobby: "Fashion"
}
},
{
title: {
name: "Ankha",
image_url: "https://dodo.ac/np/images/5/56/Ankha_NH.png",
species: "Cat",
personality: "Snooty",
sub_personality: "B",
gender: "Female",
birthday: "September 22",
sign: "Virgo",
quote: "All that glitters is not gold.",
catchphrase: "me meow",
clothing: "Palatial Tank Dress",
fav_color1: "Colorful",
fav_color2: "Brown",
fav_style1: "Gorgeous",
fav_style2: "Simple",
hobby: "Nature"
}
},
{
title: {
name: "Annalisa",
image_url: "https://dodo.ac/np/images/f/f0/Annalisa_NH.png",
species: "Anteater",
personality: "Normal",
sub_personality: "A",
gender: "Female",
birthday: "February 6",
sign: "Aquarius",
quote: "Home is where the heart is.",
catchphrase: "gumdrop",
clothing: "Blossoming Kimono",
fav_color1: "Red",
fav_color2: "Pink",
fav_style1: "Elegant",
fav_style2: "Gorgeous",
hobby: "Nature"
}
},
{
title: {
name: "Annalise",
image_url: "https://dodo.ac/np/images/c/c4/Annalise_NH.png",
species: "Horse",
personality: "Snooty",
sub_personality: "B",
gender: "Female",
birthday: "December 2",
sign: "Sagittarius",
quote: "Let gossip go in one ear and out the other.",
catchphrase: "nipper",
clothing: "Bold Muumuu",
fav_color1: "Blue",
fav_color2: "Purple",
fav_style1: "Elegant",
fav_style2: "Active",
hobby: "Fashion"
}
},
{
title: {
name: "Antonio",
image_url: "https://dodo.ac/np/images/d/d4/Antonio_NH.png",
species: "Anteater",
personality: "Jock",
sub_personality: "B",
gender: "Male",
birthday: "October 20",
sign: "Libra",
quote: "Always go for the burn!",
catchphrase: "honk",
clothing: "Bone Tee",
fav_color1: "Aqua",
fav_color2: "Blue",
fav_style1: "Simple",
fav_style2: "",
hobby: "Fitness"
}
},
{
title: {
name: "Apollo",
image_url: "https://dodo.ac/np/images/0/0e/Apollo_NH_Transparent.png",
species: "Eagle",
personality: "Cranky",
sub_personality: "B",
gender: "Male",
birthday: "July 4",
sign: "Cancer",
quote: "What goes up must come down.",
catchphrase: "pah",
clothing: "Flight Jacket",
fav_color1: "Black",
fav_color2: "",
fav_style1: "Cool",
fav_style2: "Simple",
hobby: "Music"
}
},
{
title: {
name: "Apple",
image_url: "https://dodo.ac/np/images/5/57/Apple_NH.png",
species: "Hamster",
personality: "Peppy",
sub_personality: "A",
gender: "Female",
birthday: "September 24",
sign: "Libra",
quote: "One rotten apple spoils the barrel.",
catchphrase: "cheekers",
clothing: "Marble-Dots Tee",
fav_color1: "Colorful",
fav_color2: "Red",
fav_style1: "Cute",
fav_style2: "Simple",
hobby: "Play"
}
},
{
title: {
name: "Astrid",
image_url: "https://dodo.ac/np/images/d/d5/Astrid_NH.png",
species: "Kangaroo",
personality: "Snooty",
sub_personality: "B",
gender: "Female",
birthday: "September 8",
sign: "Virgo",
quote: "The apple doesn't fall far from the tree.",
catchphrase: "my pet",
clothing: "Tee Dress",
fav_color1: "Black",
fav_color2: "Colorful",
fav_style1: "Cool",
fav_style2: "Active",
hobby: "Music"
}
},
{
title: {
name: "Audie",
image_url: "https://dodo.ac/np/images/1/1b/Audie_NH.png",
species: "Wolf",
personality: "Peppy",
sub_personality: "A",
gender: "Female",
birthday: "August 31",
sign: "Virgo",
quote: "Be the kind of person your future self won't regret having been.",
catchphrase: "foxtrot",
clothing: "Tropical Muumuu",
fav_color1: "Green",
fav_color2: "White",
fav_style1: "Cute",
fav_style2: "Active",
hobby: "Fitness"
}
},
{
title: {
name: "Aurora",
image_url: "https://dodo.ac/np/images/5/59/Aurora_NH.png",
species: "Penguin",
personality: "Normal",
sub_personality: "B",
gender: "Female",
birthday: "January 27",
sign: "Aquarius",
quote: "Always keep your cool.",
catchphrase: "b-b-baby",
clothing: "Plover Cardigan",
fav_color1: "Pink",
fav_color2: "Red",
fav_style1: "Cute",
fav_style2: "Elegant",
hobby: "Education"
}
},
{
title: {
name: "Ava",
image_url: "https://dodo.ac/np/images/c/cc/Ava_NH.png",
species: "Chicken",
personality: "Normal",
sub_personality: "B",
gender: "Female",
birthday: "April 28",
sign: "Taurus",
quote: "Early to bed, early to rise.",
catchphrase: "beaker",
clothing: "Checkered Jumper Dress",
fav_color1: "Red",
fav_color2: "Gray",
fav_style1: "Elegant",
fav_style2: "Cute",
hobby: "Music"
}
},
{
title: {
name: "Avery",
image_url: "https://dodo.ac/np/images/d/dd/Avery_NH.png",
species: "Eagle",
personality: "Cranky",
sub_personality: "B",
gender: "Male",
birthday: "February 22",
sign: "Pisces",
quote: "What goes around comes around.",
catchphrase: "skree-haw",
clothing: "Oversized Shawl Overshirt",
fav_color1: "Orange",
fav_color2: "Brown",
fav_style1: "Simple",
fav_style2: "Gorgeous",
hobby: "Music"
}
},
{
title: {
name: "Axel",
image_url: "https://dodo.ac/np/images/0/09/Axel_NH.png",
species: "Elephant",
personality: "Jock",
sub_personality: "B",
gender: "Male",
birthday: "March 23",
sign: "Aries",
quote: "Do not compare a fly with an elephant.",
catchphrase: "WHONK",
clothing: "Kanji Tee",
fav_color1: "Green",
fav_color2: "White",
fav_style1: "Active",
fav_style2: "Simple",
hobby: "Fitness"
}
},
{
title: {
name: "Azalea",
image_url: "https://dodo.ac/np/images/e/ef/Azalea_amiibo.png",
species: "Rhinoceros",
personality: "Snooty",
sub_personality: "B",
gender: "Female",
birthday: "December 18",
sign: "Sagittarius",
quote: "Colorful petals, deep roots.",
catchphrase: "merci",
clothing: "Sleeveless Tunic",
fav_color1: "Purple",
fav_color2: "Pink",
fav_style1: "Elegant",
fav_style2: "Gorgeous",
hobby: "Nature"
}
},
{
title: {
name: "Baabara",
image_url: "https://dodo.ac/np/images/d/df/Baabara_NH.png",
species: "Sheep",
personality: "Snooty",
sub_personality: "B",
gender: "Female",
birthday: "March 28",
sign: "Aries",
quote: "Don't just follow the flock.",
catchphrase: "daahling",
clothing: "Zigzag-Print Dress",
fav_color1: "Purple",
fav_color2: "Blue",
fav_style1: "Gorgeous",
fav_style2: "Elegant",
hobby: "Fashion"
}
},
{
title: {
name: "Bam",
image_url: "https://dodo.ac/np/images/2/2b/Bam_NH.png",
species: "Deer",
personality: "Jock",
sub_personality: "A",
gender: "Male",
birthday: "November 7",
sign: "Scorpio",
quote: "Get while the getting's good.",
catchphrase: "kablang",
clothing: "Athletic Jacket",
fav_color1: "Green",
fav_color2: "Brown",
fav_style1: "Active",
fav_style2: "Simple",
hobby: "Play"
}
},
{
title: {
name: "Bangle",
image_url: "https://dodo.ac/np/images/6/68/Bangle_NH.png",
species: "Tiger",
personality: "Peppy",
sub_personality: "B",
gender: "Female",
birthday: "August 27",
sign: "Virgo",
quote: "Don't blink or you'll miss it.",
catchphrase: "growf",
clothing: "Tropical Muumuu",
fav_color1: "Yellow",
fav_color2: "Green",
fav_style1: "Gorgeous",
fav_style2: "Cute",
hobby: "Fashion"
}
},
{
title: {
name: "Barold",
image_url: "https://dodo.ac/np/images/9/9d/Barold_NH.png",
species: "Cub",
personality: "Lazy",
sub_personality: "A",
gender: "Male",
birthday: "March 2",
sign: "Pisces",
quote: "Please DO feed the bears!",
catchphrase: "cubby",
clothing: "Animal-Stripes Tee",
fav_color1: "Yellow",
fav_color2: "Black",
fav_style1: "Simple",
fav_style2: "Cool",
hobby: "Play"
}
},
{
title: {
name: "Bea",
image_url: "https://dodo.ac/np/images/c/c2/Bea_NH.png",
species: "Dog",
personality: "Normal",
sub_personality: "A",
gender: "Female",
birthday: "October 15",
sign: "Libra",
quote: "The perfect pair complements each other.",
catchphrase: "bingo",
clothing: "Striped Maxi Dress",
fav_color1: "Aqua",
fav_color2: "Green",
fav_style1: "Simple",
fav_style2: "Cool",
hobby: "Nature"
}
},
{
title: {
name: "Beardo",
image_url: "https://dodo.ac/np/images/c/c0/Beardo_NH.png",
species: "Bear",
personality: "Smug",
sub_personality: "A",
gender: "Male",
birthday: "September 27",
sign: "Libra",
quote: "Fashion first!",
catchphrase: "whiskers",
clothing: "Tweed Jacket",
fav_color1: "Brown",
fav_color2: "Blue",
fav_style1: "Elegant",
fav_style2: "",
hobby: "Education"
}
},
{
title: {
name: "Beau",
image_url: "https://dodo.ac/np/images/d/d4/Beau_NH.png",
species: "Deer",
personality: "Lazy",
sub_personality: "A",
gender: "Male",
birthday: "April 5",
sign: "Aries",
quote: "You snooze, you lose.",
catchphrase: "saltlick",
clothing: "Reindeer Sweater",
fav_color1: "Beige",
fav_color2: "Orange",
fav_style1: "Simple",
fav_style2: "Cute",
hobby: "Nature"
}
},
{
title: {
name: "Becky",
image_url: "https://dodo.ac/np/images/7/74/Becky_NH.png",
species: "Chicken",
personality: "Snooty",
sub_personality: "B",
gender: "Female",
birthday: "December 9",
sign: "Sagittarius",
quote: "A fool and his Bells are soon parted.",
catchphrase: "chicklet",
clothing: "Renaissance Dress",
fav_color1: "Purple",
fav_color2: "Pink",
fav_style1: "Gorgeous",
fav_style2: "Elegant",
hobby: "Music"
}
},
{
title: {
name: "Bella",
image_url: "https://dodo.ac/np/images/c/c0/Bella_NH.png",
species: "Mouse",
personality: "Peppy",
sub_personality: "B",
gender: "Female",
birthday: "December 28",
sign: "Capricorn",
quote: "A glamour shot is worth a thousand words.",
catchphrase: "eeks",
clothing: "Tee Dress",
fav_color1: "Black",
fav_color2: "Purple",
fav_style1: "Cool",
fav_style2: "Active",
hobby: "Music"
}
},
{
title: {
name: "Benedict",
image_url: "https://dodo.ac/np/images/3/3a/Benedict_NH.png",
species: "Chicken",
personality: "Lazy",
sub_personality: "B",
gender: "Male",
birthday: "October 10",
sign: "Libra",
quote: "Don't put all your eggs in one basket.",
catchphrase: "uh-hoo",
clothing: "Two-Ball Tee",
fav_color1: "Blue",
fav_color2: "Purple",
fav_style1: "Simple",
fav_style2: "",
hobby: "Play"
}
},
{
title: {
name: "Benjamin",
image_url: "https://dodo.ac/np/images/9/97/Benjamin_NH.png",
species: "Dog",
personality: "Lazy",
sub_personality: "A",
gender: "Male",
birthday: "August 3",
sign: "Leo",
quote: "A good dog deserves a good treat.",
catchphrase: "alrighty",
clothing: "Striped Shirt",
fav_color1: "Red",
fav_color2: "White",
fav_style1: "Simple",
fav_style2: "",
hobby: "Nature"
}
},
{
title: {
name: "Bertha",
image_url: "https://dodo.ac/np/images/a/a7/Bertha_NH.png",
species: "Hippo",
personality: "Normal",
sub_personality: "B",
gender: "Female",
birthday: "April 25",
sign: "Taurus",
quote: "The best part of spring is the picnics!",
catchphrase: "bloop",
clothing: "Pintuck-Pleated Dress",
fav_color1: "Pink",
fav_color2: "White",
fav_style1: "Cute",
fav_style2: "Elegant",
hobby: "Education"
}
},
{
title: {
name: "Bettina",
image_url: "https://dodo.ac/np/images/b/bd/Bettina_NH.png",
species: "Mouse",
personality: "Normal",
sub_personality: "B",
gender: "Female",
birthday: "June 12",
sign: "Gemini",
quote: "No time like the present!",
catchphrase: "eekers",
clothing: "Chef's Outfit",
fav_color1: "White",
fav_color2: "Red",
fav_style1: "Simple",
fav_style2: "Elegant",
hobby: "Education"
}
},
{
title: {
name: "Bianca",
image_url: "https://dodo.ac/np/images/6/6f/Bianca_NH.png",
species: "Tiger",
personality: "Peppy",
sub_personality: "A",
gender: "Female",
birthday: "December 13",
sign: "Sagittarius",
quote: "There is such a thing as love at first sight.",
catchphrase: "glimmer",
clothing: "Front-Tie Button-Down Shirt",
fav_color1: "Pink",
fav_color2: "Orange",
fav_style1: "Cute",
fav_style2: "",
hobby: "Play"
}
},
{
title: {
name: "Biff",
image_url: "https://dodo.ac/np/images/9/9c/Biff_NH.png",
species: "Hippo",
personality: "Jock",
sub_personality: "B",
gender: "Male",
birthday: "March 29",
sign: "Aries",
quote: "Eighth place is just the seventh loser.",
catchphrase: "squirt",
clothing: "Gold-Print Tee",
fav_color1: "Black",
fav_color2: "Blue",
fav_style1: "Gorgeous",
fav_style2: "Active",
hobby: "Fitness"
}
},
{
title: {
name: "Big Top",
image_url: "https://dodo.ac/np/images/8/80/Big_Top_NH.png",
species: "Elephant",
personality: "Lazy",
sub_personality: "B",
gender: "Male",
birthday: "October 3",
sign: "Libra",
quote: "A big nose never spoiled a handsome face.",
catchphrase: "villain",
clothing: "No. 3 Shirt",
fav_color1: "Green",
fav_color2: "",
fav_style1: "Simple",
fav_style2: "Active",
hobby: "Play"
}
},
{
title: {
name: "Bill",
image_url: "https://dodo.ac/np/images/c/c1/Bill_NH.png",
species: "Duck",
personality: "Jock",
sub_personality: "A",
gender: "Male",
birthday: "February 1",
sign: "Aquarius",
quote: "Even though there's no 'I' in team, there is a 'me'!",
catchphrase: "quacko",
clothing: "Basketball Tank",
fav_color1: "Blue",
fav_color2: "Purple",
fav_style1: "Active",
fav_style2: "",
hobby: "Play"
}
},
{
title: {
name: "Billy",
image_url: "https://dodo.ac/np/images/2/26/Billy_NH.png",
species: "Goat",
personality: "Jock",
sub_personality: "A",
gender: "Male",
birthday: "March 25",
sign: "Aries",
quote: "Old dogs can learn new tricks.",
catchphrase: "dagnaabit",
clothing: "Hanten Jacket",
fav_color1: "Blue",
fav_color2: "Purple",
fav_style1: "Simple",
fav_style2: "Active",
hobby: "Play"
}
},
{
title: {
name: "Biskit",
image_url: "https://dodo.ac/np/images/7/78/Biskit_NH.png",
species: "Dog",
personality: "Lazy",
sub_personality: "B",
gender: "Male",
birthday: "May 13",
sign: "Taurus",
quote: "Let sleeping dogs lie.",
catchphrase: "dawg",
clothing: "Meme Shirt",
fav_color1: "Purple",
fav_color2: "Colorful",
fav_style1: "Gorgeous",
fav_style2: "Simple",
hobby: "Play"
}
},
{
title: {
name: "Bitty",
image_url: "https://dodo.ac/np/images/7/74/Bitty_NH.png",
species: "Hippo",
personality: "Snooty",
sub_personality: "A",
gender: "Female",
birthday: "October 6",
sign: "Libra",
quote: "Necessity is the mother of all invention.",
catchphrase: "my dear",
clothing: "Frilly Dress",
fav_color1: "Pink",
fav_color2: "Orange",
fav_style1: "Cute",
fav_style2: "Elegant",
hobby: "Education"
}
},
{
title: {
name: "Blaire",
image_url: "https://dodo.ac/np/images/7/73/Blaire_NH.png",
species: "Squirrel",
personality: "Snooty",
sub_personality: "B",
gender: "Female",
birthday: "July 3",
sign: "Cancer",
quote: "Practice makes perfect.",
catchphrase: "nutlet",
clothing: "Layered Tank Dress",
fav_color1: "Orange",
fav_color2: "Brown",
fav_style1: "Gorgeous",
fav_style2: "Elegant",
hobby: "Fashion"
}
},
{
title: {
name: "Blanche",
image_url: "https://dodo.ac/np/images/d/df/Blanche_NH.png",
species: "Ostrich",
personality: "Snooty",
sub_personality: "A",
gender: "Female",
birthday: "December 21",
sign: "Sagittarius",
quote: "Nothing beats personal experience.",
catchphrase: "quite so",
clothing: "Butterfly Visiting Kimono",
fav_color1: "Black",
fav_color2: "Brown",
fav_style1: "Elegant",
fav_style2: "Gorgeous",
hobby: "Nature"
}
},
{
title: {
name: "Bluebear",
image_url: "https://dodo.ac/np/images/4/49/Bluebear_NH.png",
species: "Cub",
personality: "Peppy",
sub_personality: "B",
gender: "Female",
birthday: "June 24",
sign: "Cancer",
quote: "Candy makes the world go 'round.",
catchphrase: "peach",
clothing: "Aran-Knit Sweater",
fav_color1: "White",
fav_color2: "Blue",
fav_style1: "Cute",
fav_style2: "Simple",
hobby: "Fashion"
}
},
{
title: {
name: "Bob",
image_url: "https://dodo.ac/np/images/e/ea/Bob_NH.png",
species: "Cat",
personality: "Lazy",
sub_personality: "B",
gender: "Male",
birthday: "January 1",
sign: "Capricorn",
quote: "You only live once...or nine times.",
catchphrase: "pthhpth",
clothing: "Blossom Tee",
fav_color1: "Colorful",
fav_color2: "Red",