-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmonsters.json
9597 lines (9597 loc) · 342 KB
/
monsters.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
{
"monsters": [
{
"_id": {
"$oid": "5e157f1c8a80af35ce52d772"
},
"name": "Abyssal Lagiacrus",
"type": "Leviathan",
"isLarge": true,
"elements": [
"Thunder"
],
"ailments": [
"Thunderblight",
"Waterblight"
],
"weakness": [
"Dragon"
],
"games": [
{
"game": "Monster Hunter 3 Ultimate",
"image": "MH3U-Abyssal_Lagiacrus_Icon.png",
"info": "A rare species of Lagiacrus known only from an ancient scroll: From the abyss' darkest cave Comes the master of the wave Consumer of the world entire Devil of the sea most dire Fear it as you fear the grave.",
"danger": "6"
}
]
},
{
"_id": {
"$oid": "5e1566638a80af35ce52d747"
},
"name": "Acidic Glavenus",
"type": "Brute Wyvern",
"isLarge": true,
"ailments": [
"Defence Down"
],
"weakness": [
"Fire"
],
"games": [
{
"game": "Monster Hunter World",
"image": "MHWI-Acidic_Glavenus_Icon.png",
"info": "A subspecies of Glavenus found in the Rotten Vale. A corrosive fluid has crystallized on its tail, spraying acid with each swing."
}
]
},
{
"_id": {
"$oid": "5dfc5b0eef22781e77ab8187"
},
"name": "Agnaktor",
"type": "Leviathan",
"isLarge": true,
"subSpecies": [
"Glacial Agnaktor"
],
"elements": [
"Fire"
],
"ailments": [
"Fireblight"
],
"weakness": [
"Water",
"Ice",
"Dragon"
],
"games": [
{
"game": "Monster Hunter 3 Ultimate",
"image": "MH3U-Agnaktor_Icon.png",
"info": "Also known as fire-pike wyverns, Agnaktor use their tough beaks and great strength to burrow through rock. However, their hardened-lava armor becomes soft when they burrow underground or are attacked with fire or explosives",
"danger": "5"
},
{
"game": "Monster Hunter Generations Ultimate",
"image": "MHGen-Agnaktor_Icon.png",
"info": "Also known as fire-pike wyverns, Agnaktor use their tough beaks and great strength to burrow effortlessy through rock, and can even burrow into ceilings. Their hardened-lava armor becomes even harder when cooled forming an almost impenetrable armor.",
"danger": "5"
},
{
"game": "Monster Hunter Stories",
"image": "MHST-Agnaktor_Icon.png",
"info": "Agnaktor use their tough beaks and powerful muscles to burrow into rock, moving freely through the earth."
},
{
"game": "Monster Hunter Stories 2",
"image": "MHST2-Agnaktor_Icon.png",
"info": "Agnaktor use their tough beaks and powerful muscles to burrow through rock, moving freely through the earth. Their tough armor is actually made of molten magma, which coats their bodies and adheres to them as it cools down."
}
]
},
{
"_id": {
"$oid": "5e1459598a80af35ce52d729"
},
"name": "Ahtal-Ka",
"type": "Neopteron",
"isLarge": true,
"ailments": [
"Defence Down",
"Webbed"
],
"weakness": [
"Thunder",
"Water"
],
"games": [
{
"game": "Monster Hunter Generations Ultimate",
"image": "MHGU-Ahtal-Ka_Icon.png",
"info": "The golden empress of praying mantises resides in a huge, ruined castle. She flattens towns and fortresses, and uses the wreckage to build her lair ever larger. It's rumored that the Empress's Throne, as it is known, is strewn with golden cocoons and webbing, which contain stolen treasures.",
"danger": "8"
}
]
},
{
"_id": {
"$oid": "5e143dab8a80af35ce52d706"
},
"name": "Akantor",
"type": "Flying Wyvern",
"isLarge": true,
"elements": [
"Fire",
"Dragon"
],
"ailments": [
"Fireblight",
"Dragonblight",
"Defence Down"
],
"weakness": [
"Dragon",
"Thunder"
],
"games": [
{
"game": "Monster Hunter 4 Ultimate",
"image": "MH4U-Akantor_Icon.png",
"info": "A wyvern shrouded in mystery and known by many names -- \"the black god\" to some, \"the tyrant of fire\" to others, but usually called \"Akantor\" by the Guild. Its giant spines and tusks make for a fearsome sight in the volcanic areas it frequents.",
"danger": "6"
},
{
"game": "Monster Hunter Generations Ultimate",
"image": "MH4U-Akantor_Icon.png",
"info": "A wyvern shrouded in mystery and known by many names -- \"the black god\" to some, \"the tyrant of fire\" to others, but usually called \"Akantor\" by the Guild. Its giant spines and tusks make for a fearsome sight in the volcanic areas it frequents.",
"danger": "7"
}
]
},
{
"_id": {
"$oid": "6067120dbcd8bb76ea11b6b8"
},
"name": "Aknosom",
"type": "Bird Wyvern",
"isLarge": true,
"elements": [
"Fire"
],
"ailments": [
"Fireblight"
],
"weakness": [
"Water",
"Thunder"
],
"games": [
{
"game": "Monster Hunter Rise",
"image": "MHRise-Aknosom_Icon.png",
"info": "When this huge Bird Wyvern stands on one leg, its peculiar collar gives it the appearance of a monstrous parasol. It is fiercely territorial, and whenever it finds intruders, it spreads its wings and unfolds the eye-like crest on its head to terrifying effect.",
"danger": "2"
}
]
},
{
"_id": {
"$oid": "5e1581998a80af35ce52d776"
},
"name": "Alatreon",
"type": "Elder Dragon",
"isLarge": true,
"elements": [
"Fire",
"Dragon",
"Thunder",
"Ice",
"Water"
],
"ailments": [
"Fireblight",
"Dragonblight",
"Iceblight",
"Snowman",
"Thunderblight",
"Waterblight"
],
"weakness": [
"Ice",
"Water",
"Dragon",
"Fire"
],
"games": [
{
"game": "Monster Hunter 3 Ultimate",
"image": "MH3U-Question_Mark_Icon.png",
"info": "Blazing black dragons, so named for resembling both lightning and darkness. They mercilessly tear apart whoever touches their sharp scales. Elementally unstable, their actions can affect the very weather. Living natural disasters.",
"danger": "6"
},
{
"game": "Monster Hunter Generations Ultimate",
"image": "MH4U-Unknown_Icon.png",
"info": "Blazing black dragons, so named for resembling both lightning and darkness. They mercilessly tear apart whoever touches their sharp scales. Elementally unstable, their actions can affect the very weather. Living natural disasters.",
"danger": "8"
},
{
"game": "Monster Hunter World",
"image": "MHWI-Alatreon_Icon.png",
"info": "Known as a symbol of destruction, people fear even uttering its name. It's rumored to control all of the elements, but most, if not all, records of its existence have been burned."
}
]
},
{
"_id": {
"$oid": "607e88681c899e0f3acd409b"
},
"name": "Almudron",
"type": "Leviathan",
"isLarge": true,
"subSpecies": [
"Magma Almudron"
],
"elements": [
"Water"
],
"ailments": [
"Waterblight",
"Muddy"
],
"weakness": [
"Fire",
"Ice"
],
"games": [
{
"game": "Monster Hunter Rise",
"image": "MHRise-Almudron_Icon.png",
"info": "As its name implies, Almudron spends a great deal of time lurking in mud - at least until it emerges to smother approaching prey. From its tail oozes a strange golden fluid, which Almudron uses to dissolve the ground beneath its prey, arresting them in a mire so that it can drag them under. When enraged, it produces more fluid, turning the mud golden. When you see gold, watch out!",
"danger": "7"
}
]
},
{
"_id": {
"$oid": "5e1580a08a80af35ce52d773"
},
"name": "Altaroth",
"type": "Neopteron",
"isLarge": false,
"ailments": [
"Defence Down",
"Paralysis"
],
"weakness": [
"Fire",
"Water",
"Thunder",
"Ice",
"Dragon",
"Poison"
],
"games": [
{
"game": "Monster Hunter 3 Ultimate",
"image": "MH3U-Altaroth_Icon.png",
"info": "Insects that wildly inhabit many areas. Noted for absorbing fruit, mushrooms, and honey, then carrying them back to the nest. Materials can thus be collected from their swollen abdomens, whose color is related to what is being carried.",
"danger": "1"
},
{
"game": "Monster Hunter 4 Ultimate",
"image": "MH4U-Altaroth_Icon.png",
"info": "Insects that wildly inhabit many areas. Noted for absorbing fruit, mushrooms, and honey, then carrying them back to the nest. Materials can thus be collected from their swollen abdomens, whose color is related to what is being carried.",
"danger": "1"
},
{
"game": "Monster Hunter Generations Ultimate",
"image": "MH4U-Altaroth_Icon.png",
"info": "Insects that widely inhabit many areas. They absorb fruit, mushrooms, and honey, and then carry them back to their nest. Materials can thus be collected from their swollen abdomens, whose color is related to what they're carrying.",
"danger": "1"
},
{
"game": "Monster Hunter Rise",
"image": "MHRise-Altaroth_Icon.png",
"info": "Insects that widely inhabit many areas. They absorb fruit, mushrooms, and honey, and then carry them back to their nest. Materials can thus be collected from their swollen abdomens, whose color is related to what they're carrying."
},
{
"game": "Monster Hunter Stories",
"image": "MH4U-Altaroth_Icon.png",
"info": "Neopterons found in many habitats. They forage for fruit, mushrooms, and honey to take back to their nests"
},
{
"game": "Monster Hunter Stories 2",
"image": "MHST2-Altaroth_Icon.png",
"info": "Neopterons found in many habitats. They forage for fruit, mushrooms, and honey, sotring what they gather in their bodies before taking it back to their nests."
}
]
},
{
"_id": {
"$oid": "5e1424a48a80af35ce52d6ec"
},
"name": "Amatsu",
"type": "Elder Dragon",
"isLarge": true,
"elements": [
"Water"
],
"ailments": [
"Waterblight"
],
"weakness": [
"Dragon",
"Fire"
],
"games": [
{
"game": "Monster Hunter Generations Ultimate",
"image": "MHGen-Amatsu_Icon.png",
"info": "A legendary elder dragon spotted on Sacred Pinnacle. An avatar of storms in the folklore of Yukumo Village, Amatsu's appearance is accompanied by furious cyclones and horrific storms. Its fearsome power is said to outscale that of natural disasters.",
"danger": "8"
},
{
"game": "Monster Hunter Rise",
"image": "MHRS-Amatsu_Icon.png",
"info": "Elder dragons that can manipulate the weather and are able to conjure up unrelenting gales. Amatsu glide through the air on currents they create using their wing membrane, making it look as if they're dancing in the sky. The storms they summon are extremely destructive and can lay entire cities to waste, thus they are known as the \"Looming Calamity.\" When enraged, their storms become even more violent, enveloping the area with unrelenting lighting strikes.",
"danger": "10"
}
]
},
{
"_id": {
"$oid": "5e158ce68a80af35ce52d78d"
},
"name": "Ancient Leshen",
"type": "Relict",
"isLarge": true,
"ailments": [
"Bleeding"
],
"weakness": [
"Fire"
],
"games": [
{
"game": "Monster Hunter World",
"image": "MHW-Ancient_Leshen_Icon.png",
"info": "An old Leshen that arrived through a portal to assume control over the Ancient Forest. Sometimes revered as an indigenous deity."
}
]
},
{
"_id": {
"$oid": "5e13357b25d9c11597488ae3"
},
"name": "Anjanath",
"type": "Brute Wyvern",
"isLarge": true,
"subSpecies": [
"Fulgur Anjanath"
],
"elements": [
"Fire"
],
"ailments": [
"Fireblight"
],
"weakness": [
"Water"
],
"games": [
{
"game": "Monster Hunter World",
"image": "MHW-Anjanath_Icon.png",
"info": "The Anjanath patrols the Ancient Forest looking for its favorite meal, Aptonoth. This belligerent monster will attack anything without the slightest provocation."
},
{
"game": "Monster Hunter Rise",
"image": "MHRise-Anjanath_Icon.png",
"info": "This belligerent monster will attack anything without the hesitation. The membrane along its tail fans out when its provoked - a behavior theorized to be either an act of intimiation or thermoregulation, as it has been known to do so when it breathes fire.",
"danger": "6"
},
{
"game": "Monster Hunter Stories 2",
"image": "MHST2-Anjanath_Icon.png",
"info": "These belligerent monsters will tenaciously pursue and attack without the slightest provocation, burying their fangs deep into anything that strays too close. The large spikes on their bottom jaws heat up, turning their breath into a flurry of flames."
}
]
},
{
"_id": {
"$oid": "5e15781d8a80af35ce52d765"
},
"name": "Anteka",
"type": "Herbivore",
"isLarge": false,
"weakness": [
"Fire",
"Water",
"Thunder",
"Ice"
],
"games": [
{
"game": "Monster Hunter 3 Ultimate",
"image": "MH3U-Anteka_Icon.png",
"info": "Herbivores that live in cold climates. Generally docile, though they have been known to attack when threatened. Their high-quality pelts have many uses, and their antlers are highly prized by the guild. Simply stun the creatures to easily harvest one.",
"danger": "1"
},
{
"game": "Monster Hunter Generations Ultimate",
"image": "MHGen-Anteka_Icon.png",
"info": "Herbivores that live in cold climates. Generally docile, though they have been known to attack when threatened. Their high-quality pelts have many uses, and their antlers are highly prized by the guild. Simply stun the creatures to easily harvest one.",
"danger": "1"
},
{
"game": "Monster Hunter Rise",
"image": "MHWI-Anteka_Icon.png",
"info": "Herbivores of the tundra that are slightly more aggressive than Kelbi, using their horns to fend off any attacker."
}
]
},
{
"_id": {
"$oid": "5e1556e78a80af35ce52d72b"
},
"name": "Apceros",
"type": "Herbivore",
"isLarge": false,
"weakness": [
"Fire",
"Thunder"
],
"games": [
{
"game": "Monster Hunter 4 Ultimate",
"image": "MH4U-Apceros_Icon.png",
"info": "Desert-dwelling Herbivores covered in tough plating. Highly territorial and known to tirelessly chase any who enter their habitat, they are especially hostile toward hunters, who have made a practice of stealing eggs from their nests.",
"danger": "2"
},
{
"game": "Monster Hunter Generations Ultimate",
"image": "MH4U-Apceros_Icon.png",
"info": "Desert-dwelling Herbivores covered in tough plating. Highly territorial and known to tirelessly chase any who enter their habitat, they are especially hostile toward hunters, who have made a practice of stealing eggs from their nests.",
"danger": "2"
},
{
"game": "Monster Hunter World",
"image": "MHW-Apceros_Icon.png",
"info": "Herbivores that inhabits the Wildspire Waste. They've developed particularly hard hide to ward off attackers, and are known to gather in groups to defend themselves."
},
{
"game": "Monster Hunter Stories",
"image": "MH4U-Apceros_Icon.png",
"info": "Herbivores clad in sturdy, armor-like plates. Approach with caution to avoid a fierce and persistent chase."
},
{
"game": "Monster Hunter Stories 2",
"image": "MHST2-Apceros_Icon.png",
"info": "Herbivores clad in sturdy, armor-like plates. Approach with caution to avoid a fierce and persistent chase."
}
]
},
{
"_id": {
"$oid": "608413b741460e8216704352"
},
"name": "Apex Arzuros",
"type": "Fanged Beast",
"isLarge": true,
"weakness": [
"Fire",
"Ice"
],
"games": [
{
"game": "Monster Hunter Rise",
"image": "MHRise-Apex_Arzuros_Icon.png",
"info": "An Arzuros so mighty, it was crowned an Apex. It is eternally possessed by wrath and terror, possibly due to the myriad wounds that cover its body. Its forelegs are massive, deft removers of any who'd stand in their way. The call of an Apex unleashes its tortured anger on nearby beasts, driving them into a frenzy.",
"danger": "8"
}
]
},
{
"_id": {
"$oid": "608413b741460e8216704359"
},
"name": "Apex Diablos",
"type": "Flying Wyvern",
"isLarge": true,
"weakness": [
"Water",
"Ice",
"Dragon",
"Thunder"
],
"games": [
{
"game": "Monster Hunter Rise",
"image": "MHRise-Apex_Diablos_Icon.png",
"info": "A Diablos so mighty, it was crowned an Apex. It is eternally possessed by wrath and terror, possibly due to the myriad wounds that cover its body. Its supremely developed horns add to the lethality of its charge. The call of an Apex unleashes its tortured anger on nearby beasts, driving them into a frenzy.",
"danger": "10"
}
]
},
{
"_id": {
"$oid": "6084142841460e8216704354"
},
"name": "Apex Mizutsune",
"type": "Leviathan",
"isLarge": true,
"elements": [
"Water"
],
"ailments": [
"Bubble",
"Waterblight"
],
"weakness": [
"Thunder",
"Dragon"
],
"games": [
{
"game": "Monster Hunter Rise",
"image": "MHRise-Apex_Mizutsune_Icon.png",
"info": "A Mizutsune so mighty, it was crowned an Apex. It is eternally possessed by wrath and terror, possibly due to the myriad wounds that cover its body. Its bubbles and huge tail have no trouble sending foes packing. The call of an Apex unleashes its tortured anger on nearby beasts, driving them into a frenzy.",
"danger": "9"
}
]
},
{
"_id": {
"$oid": "6084142841460e8216704358"
},
"name": "Apex Rathalos",
"type": "Flying Wyvern",
"isLarge": true,
"elements": [
"Fire"
],
"ailments": [
"Fireblight",
"Stun",
"Poison"
],
"weakness": [
"Dragon",
"Thunder"
],
"games": [
{
"game": "Monster Hunter Rise",
"image": "MHRise-Apex_Rathalos_Icon.png",
"info": "A Rathalos so mighty, it was crowned an Apex. It is eternally possessed by wrath and terror, possibly due to the myriad wounds that cover its body. Its every breath releases flaming jets that singe the very air. The call of an Apex unleashes its tortured anger on nearby beasts, driving them into a frenzy.",
"danger": "9"
}
]
},
{
"_id": {
"$oid": "6084142841460e8216704353"
},
"name": "Apex Rathian",
"type": "Flying Wyvern",
"isLarge": true,
"elements": [
"Fire"
],
"ailments": [
"Fireblight",
"Poison"
],
"weakness": [
"Dragon",
"Thunder"
],
"games": [
{
"game": "Monster Hunter Rise",
"image": "MHRise-Apex_Rathian_Icon.png",
"info": "A Rathian so mighty, it was crowned an Apex. It is eternally possessed by wrath and terror, possibly due to the myriad wounds that cover its body. Its tail oozes a venom far deadlier than any of a normal monster. The call of an Apex unleashes its tortured anger on nearby beasts, driving them into a frenzy.",
"danger": "8"
}
]
},
{
"_id": {
"$oid": "6084142847460e8216704353"
},
"name": "Apex Zinogre",
"type": "Fanged Wyvern",
"isLarge": true,
"elements": [
"Thunder"
],
"ailments": [
"Thunderblight",
"Paralysis"
],
"weakness": [
"Ice",
"Water",
"Fire"
],
"games": [
{
"game": "Monster Hunter Rise",
"image": "MHRise-Apex_Zinogre_Icon.png",
"info": "A Zinogre so mighty, it was crowned an Apex. Its body is covered in scars and wounds as if it had been caught in a storm, and it's seemingly always dominated by wrath and terror. Its forelegs - and their every strike - brim with ferocious sparks. The call of an Apex unleashes its tortured anger on nearby beasts, driving them into a frenzy.",
"danger": "10"
}
]
},
{
"_id": {
"$oid": "5dfc9bde9dabf81e7717cea6"
},
"name": "Aptonoth",
"type": "Herbivore",
"isLarge": false,
"weakness": [
"Fire",
"Water",
"Thunder",
"Ice"
],
"games": [
{
"game": "Monster Hunter 3 Ultimate",
"image": "MH3U-Aptonoth_Icon.png",
"info": "Relatively docile herbivores with characteristic crest plates. They form herds and raise young communally, and have been used as pack animals for generations; their meat is tasty and nutritious. Very cautious around large monsters.",
"danger": "1"
},
{
"game": "Monster Hunter 4 Ultimate",
"image": "MH4U-Aptonoth_Icon.png",
"info": "Relatively docile herbivores with characteristic crest plates. They form herds and raise young communally, and have been used as pack animals for generations. Their meat is tasty and nutritious, and they're very cautious around large monsters.",
"danger": "1"
},
{
"game": "Monster Hunter Generations Ultimate",
"image": "MH4U-Aptonoth_Icon.png",
"info": "Relatively docile herbivores with characteristic crest plates. They form herds and raise young communally, and have been used as pack animals for generations. Their meat is tasty and nutritious, and they're very cautious around large monsters.",
"danger": "1"
},
{
"game": "Monster Hunter World",
"image": "MHW-Aptonoth_Icon.png",
"info": "Docile herbivores that graze in packs. Their meat is considered a delicacy and is rich in nutrients. If one member of the herd is attacked, the rest will flee immediately."
},
{
"game": "Monster Hunter Stories",
"image": "MH4U-Aptonoth_Icon.png",
"info": "Placid, crested herbivorous monsters. They form herds and raise their young as a community."
},
{
"game": "Monster Hunter Stories 2",
"image": "MHST2-Aptonoth_Icon.png",
"info": "Placid, crested herbivorous monsters. They form herds and raise their young as a community, and become defensive when larger monsters approach. Deep-seated in Rider culture for their nutritious meat and use as pack animals."
}
]
},
{
"_id": {
"$oid": "5e1570f48a80af35ce52d757"
},
"name": "Arzuros",
"type": "Fanged Beast",
"isLarge": true,
"subSpecies": [
"Redhelm Arzuros",
"Apex Arzuros"
],
"weakness": [
"Fire",
"Ice"
],
"games": [
{
"game": "Monster Hunter 3 Ultimate",
"image": "MH3U-Arzuros_Icon.png",
"info": "Forest-and mountain-dwelling beasts found in humid regions. Though known more for fishing and standing upright to collect honey, their thick claws and heavy forearm plating allow them to deliver powerful blows to any aggressor.",
"danger": "3"
},
{
"game": "Monster Hunter Generations Ultimate",
"image": "MHGen-Arzuros_Icon.png",
"info": "Beasts known to dwell in humid forest and mountain regions. Though known more for fishing and standing upright to collect honey, their thick claws and heavy forearm plating allow them to deliver powerful blows to any aggressor.",
"danger": "3"
},
{
"game": "Monster Hunter Rise",
"image": "MHRise-Arzuros_Icon.png",
"info": "Beasts known to dwell in humid forest and mountain regions. Though known more for fishing and standing upright to collect honey, their thick claws and heavy forearm plating allow them to deliver powerful blows to any aggressor.",
"danger": "1"
},
{
"game": "Monster Hunter Stories",
"image": "MHST-Arzuros_Icon.png",
"info": "Bear-like monsters found in warm, damp environments. Can often be found catching fish from rivers."
},
{
"game": "Monster Hunter Stories 2",
"image": "MHST2-Arzuros_Icon.png",
"info": "Bear-like monsters found in warm, damp environments. Can often be found catching fish from rivers."
}
]
},
{
"_id": {
"$oid": "5e15bafc8a80af35ce52d79f"
},
"name": "Ash Kecha Wacha",
"type": "Fanged Beast",
"isLarge": true,
"elements": [
"Fire"
],
"ailments": [
"Fireblight"
],
"weakness": [
"Water",
"Ice",
"Thunder"
],
"games": [
{
"game": "Monster Hunter 4 Ultimate",
"image": "MH4U-Ash_Kecha_Wacha_Icon.png",
"info": "As with standard Kecha Wacha, these arboreal fanged beasts shield their face with their tough ears when provoked. What makes them different, however, is their ability to spit fireballs, and, of course, their trademark pale fur.",
"danger": "3"
},
{
"game": "Monster Hunter Stories",
"image": "MH4U-Ash_Kecha_Wacha_Icon.png",
"info": "This subspecies has pale, multicolored fur. They make sport of their prey with the cunning of their attacks."
},
{
"game": "Monster Hunter Stories 2",
"image": "MHST2-Ash_Kecha_Wacha_Icon.png",
"info": "This subspecies has pale, multicolored fur. They make sport of their prey with the cunning of their attacks."
}
]
},
{
"_id": {
"$oid": "5e142a928a80af35ce52d6ef"
},
"name": "Astalos",
"type": "Flying Wyvern",
"isLarge": true,
"subSpecies": [
"Boltreaver Astalos"
],
"elements": [
"Thunder"
],
"ailments": [
"Thunderblight",
"Paralysis",
"Stun"
],
"weakness": [
"Ice",
"Water"
],
"games": [
{
"game": "Monster Hunter Generations Ultimate",
"image": "MHGen-Astalos_Icon.png",
"info": "Known as the \"Thunder Wyvern,\" Astalos can charge itself with electricity from the furious movements of its wings, tail and crest. In its charged state, the membrane in its wings take on a beautiful glow that only barely offsets the terrible nature of this monster.",
"danger": "5"
},
{
"game": "Monster Hunter Rise",
"image": "MHRS-Astalos_Icon.png",
"info": "Large Flying Wyverns with crest-shaped organs that let them control vast amounts of electricity. Astalos vibrate these organs on their head, forked tail, and brilliant wings to charge the respective body part with electricity, yielding tremendous strength and an amplified attack range. Violent to a fault, witnesses have observed them using all their might to drive intruders from their territory.",
"danger": "7"
},
{
"game": "Monster Hunter Stories 2",
"image": "MHST2-Astalos_Icon.png",
"info": "Astalos can generate high-voltage electricity within their bodies. They shudder violently to charge up whatever body part they plan to attack with. A naturally aggressive species, they fiercely defend their territories."
}
]
},
{
"_id": {
"$oid": "607d74421c899e0f3acd4a9a"
},
"name": "Aurora Somnacanth",
"type": "Leviathan",
"isLarge": true,
"elements": [
"Ice"
],
"ailments": [
"Iceblight"
],
"weakness": [
"Fire",
"Thunder"
],
"games": [
{
"game": "Monster Hunter Rise",
"image": "MHRS-Aurora_Somnacanth_Icon.png",
"info": "Light illuminates the dust scattered around this subspecies, making their fantastical appearance shimmer softly. Aurora Somnacanth sprays icy blasts in place of sleeping powder, attacking all who dare enter their territory. They use the permanent cold emanating from their bodies to freeze the vicinity, and then the frozen surface to move around swiftly.",
"danger": "6"
}
]
},
{
"_id": {
"$oid": "5e15604e8a80af35ce52d73b"
},
"name": "Azure Rathalos",
"type": "Flying Wyvern",
"isLarge": true,
"elements": [
"Fire"
],
"ailments": [
"Fireblight",
"Stun",
"Poison"
],
"weakness": [
"Dragon",
"Ice"
],
"games": [
{
"game": "Monster Hunter 3 Ultimate",
"image": "MH3U-Azure_Rathalos_Icon.png",
"info": "An azure-colored subspecies of Rathalos. More mobile than their standard cousin, they locate prey from the air and quickly swoop in for the kill. Once these master hunters select a target, there is little hope of escape.",
"danger": "4"
},
{
"game": "Monster Hunter 4 Ultimate",
"image": "MH4U-Azure_Rathalos_Icon.png",
"info": "An azure-colored subspecies of Rathalos. More mobile than their standard cousin, they locate prey from the air and quickly swoop in for the kill. Once these master hunters select a target, there is little hope of escape.",
"danger": "5"
},
{
"game": "Monster Hunter World",
"image": "MHW-Azure_Rathalos_Icon.png",
"info": "An azure-colored subspecies of Rathalos. More mobile than their standard cousins, they locate prey from the air and quickly swoop in for the kill."
},
{
"game": "Monster Hunter Stories",
"image": "MH4U-Azure_Rathalos_Icon.png",
"info": "A Rathalos subspecies. More mobile than its cousin, it attacks with a matchless speed and ferocity."
},
{
"game": "Monster Hunter Stories 2",
"image": "MHST2-Azure_Rathalos_Icon.png",
"info": "A Rathalos subspecies. More mobile than its cousin, it attacks with matchless speed and ferocity."
}
]
},
{
"_id": {
"$oid": "5dfda7319dabf81e7717ceaa"
},
"name": "Baggi",
"type": "Bird Wyvern",
"isLarge": false,
"ailments": [
"Sleep"
],
"weakness": [
"Fire"
],
"games": [
{
"game": "Monster Hunter 3 Ultimate",
"image": "MH3U-Baggi_Icon.png",
"info": "Highly intelligent, carnivorous Bird Wyverns that hunt in packs. Noted for their blue scales and sharp glare. Baggi are feared for their ability to release a tranquillising fluid; it can knock out even humans for several seconds.",
"danger": "2"
},
{
"game": "Monster Hunter Rise",
"image": "MHRise-Baggi_Icon.png",
"info": "Highly intelligent, carnivorous bird wyverns that hunt in packs. Noted for their blue scales and sharp glare. Baggi are feared for their ability to release a tranquilizing fluid; even a grown man can be put to sleep in seconds."
},
{
"game": "Monster Hunter Stories",
"image": "MHST-Baggi_Icon.png",
"info": "Intelligent Bird Wyverns that hunt in packs, and use special bodily fluids to tranquilize their prey."
},
{
"game": "Monster Hunter Stories 2",
"image": "MHST2-Baggi_Icon.png",
"info": "Intelligent Bird Wyverns that hunt in packs and use special bodily fluids to tranquilize their prey. Noted for their pale-blue scales and sharp glare."
}
]
},
{
"_id": {
"$oid": "5e1433468a80af35ce52d6f8"
},
"name": "Baleful Gigginox",
"type": "Flying Wyvern",
"isLarge": true,
"elements": [
"Thunder"
],
"ailments": [
"Paralysis",
"Thunderblight"
],
"weakness": [
"Water"
],
"games": [
{
"game": "Monster Hunter 3 Ultimate",
"image": "MH3U-Baleful_Gigginox_Icon.png",
"info": "A subspecies of Gigginox that uses electricity to stun prey. It is believed to be a random mutation, and as such, sightings are relatively rare. It may be possible to weaken its electrical powers by destroying the capacitor organs on its body.",
"danger": "4"
}
]
},
{
"_id": {
"$oid": "5e1565f28a80af35ce52d746"
},
"name": "Banbaro",
"type": "Brute Wyvern",
"isLarge": true,
"weakness": [
"Dragon",
"Fire"
],
"games": [
{
"game": "Monster Hunter World",
"image": "MHWI-Banbaro_Icon.png",
"info": "A monster marked by its furious charge and by the majestic twin horns that uproot trees and gouge at the earth as it runs."
}
]
},
{
"_id": {
"$oid": "5dfc99059dabf81e7717cea5"
},
"name": "Barioth",
"type": "Flying Wyvern",
"isLarge": true,
"subSpecies": [
"Sand Barioth",
"Frostfang Barioth"
],
"elements": [
"Ice"
],
"ailments": [
"Iceblight",
"Snowman"
],
"weakness": [
"Fire",
"Thunder"
],
"games": [
{
"game": "Monster Hunter 3 Ultimate",
"image": "MH3U-Barioth_Icon.png",
"info": "Wyverns that rule the eternally frozen Tundra. Barioth use their huge tusks and spiked scales to move freely atop the slippery ice; this ability makes them very difficult to keep up with.",
"danger": "5"
},
{
"game": "Monster Hunter Generations Ultimate",
"image": "MHGU-Barioth_Icon.png",
"info": "Wyverns that rule the eternally frozen Tundra. Barioth use their huge tusks and spiked scales to move freely atop the slippery ice; this ability makes them very difficult to keep up with.",
"danger": "5"
},
{
"game": "Monster Hunter World",
"image": "MHWI-Barioth_Icon.png",
"info": "The snow-white flying wyvern with huge tusks found in the frozen tundra. It uses its forelegs and tail to traverse ice with ease."