forked from Neryss/monster_hunter_db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mhw_db.json
13682 lines (13682 loc) · 251 KB
/
mhw_db.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
[
{
"id": 1,
"type": "small",
"species": "herbivore",
"elements": [],
"name": "Aptonoth",
"description": "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.",
"ailments": [],
"locations": [
{
"id": 1,
"zoneCount": 17,
"name": "Ancient Forest"
}
],
"resistances": [],
"weaknesses": [
{
"element": "fire",
"stars": 1,
"condition": null
},
{
"element": "water",
"stars": 1,
"condition": null
},
{
"element": "thunder",
"stars": 1,
"condition": null
},
{
"element": "ice",
"stars": 1,
"condition": null
}
],
"rewards": [
{
"id": 31,
"item": {
"id": 67,
"rarity": 1,
"carryLimit": 10,
"value": 5,
"name": "Raw Meat",
"description": "Meat carved from a monster. Can be cooked, combined, or used to set a trap."
},
"conditions": [
{
"type": "carve",
"rank": "low",
"quantity": 1,
"chance": 100,
"subtype": "Body"
},
{
"type": "carve",
"rank": "high",
"quantity": 1,
"chance": 100,
"subtype": "Body"
}
]
}
]
},
{
"id": 2,
"type": "small",
"species": "fanged wyvern",
"elements": [],
"name": "Jagras",
"description": "Members of the Great Jagras pack, these smaller monsters will flee upon seeing one of their own perish. They're also known for ambushing larger monsters at a moment's notice.",
"ailments": [],
"locations": [
{
"id": 1,
"zoneCount": 17,
"name": "Ancient Forest"
}
],
"resistances": [],
"weaknesses": [
{
"element": "fire",
"stars": 1,
"condition": null
},
{
"element": "thunder",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 3,
"type": "small",
"species": "wingdrake",
"elements": [],
"name": "Mernos",
"description": "Wingdrakes that feast on scatternuts. The flock will travel great distances when startled, making them an invaluable mode of transportation for clever hunters.",
"ailments": [],
"locations": [
{
"id": 1,
"zoneCount": 17,
"name": "Ancient Forest"
},
{
"id": 3,
"zoneCount": 15,
"name": "Wildspire Waste"
}
],
"resistances": [],
"weaknesses": [
{
"element": "fire",
"stars": 1,
"condition": null
},
{
"element": "water",
"stars": 1,
"condition": null
},
{
"element": "thunder",
"stars": 1,
"condition": null
},
{
"element": "ice",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 4,
"type": "small",
"species": "neopteron",
"elements": [],
"name": "Vespoid",
"description": "Insects that paralyze their targets with their long stingers. They break easily, so attack them with poison or slinger ammo if you want to carve them.",
"ailments": [
{
"id": 7,
"name": "Paralysis",
"description": "Paralysis renders the hunter or monster immobilized and susceptible to increased damage for the duration. Hunters can unparalyzed if they are hit.",
"recovery": {
"actions": [],
"items": []
},
"protection": {
"skills": [
{
"id": 2,
"name": "Paralysis Resistance",
"description": "Reduces the duration of paralysis."
}
],
"items": []
}
}
],
"locations": [
{
"id": 1,
"zoneCount": 17,
"name": "Ancient Forest"
},
{
"id": 2,
"zoneCount": 15,
"name": "Coral Highlands"
},
{
"id": 3,
"zoneCount": 15,
"name": "Wildspire Waste"
},
{
"id": 4,
"zoneCount": 16,
"name": "Rotten Vale"
},
{
"id": 5,
"zoneCount": 16,
"name": "Elder's Recess"
}
],
"resistances": [],
"weaknesses": [
{
"element": "fire",
"stars": 1,
"condition": null
},
{
"element": "poison",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 5,
"type": "small",
"species": "herbivore",
"elements": [],
"name": "Mosswine",
"description": "Mosswine are known for their excellent sense of smell, and are often found foraging for fungi. If you're hunting for mushrooms, follow the Mosswine to the motherlode.",
"ailments": [],
"locations": [
{
"id": 1,
"zoneCount": 17,
"name": "Ancient Forest"
},
{
"id": 3,
"zoneCount": 15,
"name": "Wildspire Waste"
},
{
"id": 4,
"zoneCount": 16,
"name": "Rotten Vale"
}
],
"resistances": [],
"weaknesses": [
{
"element": "fire",
"stars": 1,
"condition": null
},
{
"element": "water",
"stars": 1,
"condition": null
},
{
"element": "thunder",
"stars": 1,
"condition": null
},
{
"element": "ice",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 6,
"type": "small",
"species": "herbivore",
"elements": [],
"name": "Apceros",
"description": "Herbivores that inhabit the Wildspire Waste. They've developed particularly hard hide to ward off attackers, and are known to gather in groups to defend themselves.",
"ailments": [],
"locations": [
{
"id": 3,
"zoneCount": 15,
"name": "Wildspire Waste"
}
],
"resistances": [],
"weaknesses": [
{
"element": "fire",
"stars": 1,
"condition": null
},
{
"element": "thunder",
"stars": 1,
"condition": null
}
],
"rewards": [
{
"id": 30,
"item": {
"id": 67,
"rarity": 1,
"carryLimit": 10,
"value": 5,
"name": "Raw Meat",
"description": "Meat carved from a monster. Can be cooked, combined, or used to set a trap."
},
"conditions": [
{
"type": "carve",
"rank": "low",
"quantity": 1,
"chance": 100,
"subtype": "Body"
},
{
"type": "carve",
"rank": "high",
"quantity": 1,
"chance": 100,
"subtype": "Body"
}
]
}
]
},
{
"id": 7,
"type": "small",
"species": "herbivore",
"elements": [],
"name": "Kestodon",
"description": "Female Kestodon will alert the pack of danger, while the males will violently charge would-be threats. Their rushing charges can be blocked, however, leaving them open to attacks.",
"ailments": [],
"locations": [
{
"id": 1,
"zoneCount": 17,
"name": "Ancient Forest"
},
{
"id": 3,
"zoneCount": 15,
"name": "Wildspire Waste"
}
],
"resistances": [],
"weaknesses": [
{
"element": "water",
"stars": 1,
"condition": null
},
{
"element": "ice",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 8,
"type": "small",
"species": "wingdrake",
"elements": [],
"name": "Noios",
"description": "Wingdrakes that produce a sound similar to screamer pods when startled. Use meat to get their attention, and then hunt them for materials, or use them for transportation.",
"ailments": [],
"locations": [
{
"id": 3,
"zoneCount": 15,
"name": "Wildspire Waste"
}
],
"resistances": [],
"weaknesses": [
{
"element": "water",
"stars": 1,
"condition": null
},
{
"element": "thunder",
"stars": 1,
"condition": null
},
{
"element": "ice",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 9,
"type": "small",
"species": "fish",
"elements": [],
"name": "Gajau",
"description": "Vicious piscine that form groups to defend their territory from intruders. Be sure not to venture too closely to their habitat!",
"ailments": [],
"locations": [
{
"id": 1,
"zoneCount": 17,
"name": "Ancient Forest"
},
{
"id": 3,
"zoneCount": 15,
"name": "Wildspire Waste"
}
],
"resistances": [],
"weaknesses": [
{
"element": "fire",
"stars": 1,
"condition": null
},
{
"element": "thunder",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 10,
"type": "small",
"species": "herbivore",
"elements": [],
"name": "Kelbi",
"description": "Small herbivores known for their gentle demeanor and the medicinal properties of their horns. Those wishing to harvest a horn should aim for the head when attacking them.",
"ailments": [],
"locations": [
{
"id": 2,
"zoneCount": 15,
"name": "Coral Highlands"
},
{
"id": 3,
"zoneCount": 15,
"name": "Wildspire Waste"
}
],
"resistances": [],
"weaknesses": [
{
"element": "fire",
"stars": 1,
"condition": null
},
{
"element": "water",
"stars": 1,
"condition": null
},
{
"element": "thunder",
"stars": 1,
"condition": null
},
{
"element": "ice",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 11,
"type": "small",
"species": "wingdrake",
"elements": [],
"name": "Raphinos",
"description": "Wingdrakes inhabiting the Coral Highlands. They group up to steal the eggs of other animals, but this in turn exposes them to the attention of larger, more vicious predators.",
"ailments": [],
"locations": [
{
"id": 2,
"zoneCount": 15,
"name": "Coral Highlands"
},
{
"id": 4,
"zoneCount": 16,
"name": "Rotten Vale"
}
],
"resistances": [],
"weaknesses": [
{
"element": "thunder",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 12,
"type": "small",
"species": "fanged wyvern",
"elements": [],
"name": "Shamos",
"description": "Small nocturnal monsters. They're particularly vulnerable to Tzitzi-Ya-Ku's blinding flash, but have been known to gang up on enemies.",
"ailments": [],
"locations": [
{
"id": 2,
"zoneCount": 15,
"name": "Coral Highlands"
}
],
"resistances": [],
"weaknesses": [
{
"element": "fire",
"stars": 1,
"condition": null
},
{
"element": "thunder",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 13,
"type": "small",
"species": "fanged wyvern",
"elements": [],
"name": "Girros",
"description": "Monsters known to attack in packs, using the deadly vapor of the Rotten Vale to their advantage. They're known for crippling targets with paralyzing fangs.",
"ailments": [
{
"id": 7,
"name": "Paralysis",
"description": "Paralysis renders the hunter or monster immobilized and susceptible to increased damage for the duration. Hunters can unparalyzed if they are hit.",
"recovery": {
"actions": [],
"items": []
},
"protection": {
"skills": [
{
"id": 2,
"name": "Paralysis Resistance",
"description": "Reduces the duration of paralysis."
}
],
"items": []
}
}
],
"locations": [
{
"id": 4,
"zoneCount": 16,
"name": "Rotten Vale"
}
],
"resistances": [],
"weaknesses": [
{
"element": "thunder",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 14,
"type": "small",
"species": "neopteron",
"elements": [],
"name": "Hornetaur",
"description": "Small insects that are found primarily on land. They're highly territorial and will attack anything that approaches them. Gather their materials by attacking them with the slinger.",
"ailments": [],
"locations": [
{
"id": 4,
"zoneCount": 16,
"name": "Rotten Vale"
}
],
"resistances": [],
"weaknesses": [
{
"element": "fire",
"stars": 1,
"condition": null
},
{
"element": "water",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 15,
"type": "small",
"species": "herbivore",
"elements": [],
"name": "Gastodon",
"description": "Pack monsters that inhabit the Elder's Recess. They are easily angered by intruders, and will charge at monsters twice their size.",
"ailments": [],
"locations": [
{
"id": 5,
"zoneCount": 16,
"name": "Elder's Recess"
}
],
"resistances": [],
"weaknesses": [
{
"element": "thunder",
"stars": 1,
"condition": null
}
],
"rewards": []
},
{
"id": 16,
"type": "small",
"species": "wingdrake",
"elements": [],
"name": "Barnos",
"description": "Fervid wingdrakes that have flourished under harsh living conditions. They target intruders with a unique acidic agent, and then attack as a swarm.",
"ailments": [
{
"id": 14,
"name": "Defense Down",
"description": "Some monsters may inflict a status that lowers a hunter's defense. Lasts for a certain period of time but can also be cured with defense-increasing items.",
"recovery": {
"actions": [],
"items": [
{
"id": 25,
"rarity": 4,
"value": 58,
"carryLimit": 5,
"name": "Armorskin",
"description": "Boosts your defense by turning your skin as hard as rock."
},
{
"id": 26,
"rarity": 5,
"value": 269,
"carryLimit": 5,
"name": "Mega Armorskin",
"description": "Boosts your defense even more than a regular armorskin."
}
]
},
"protection": {
"skills": [],
"items": []
}
}
],
"locations": [
{
"id": 5,
"zoneCount": 16,
"name": "Elder's Recess"
},
{
"id": 6,
"zoneCount": 1,
"name": "Great Ravine"
},
{
"id": 8,
"zoneCount": 1,
"name": "Everstream"
}
],
"resistances": [],
"weaknesses": [
{
"element": "dragon",
"stars": 1,
"condition": null
}
],
"rewards": [
{
"id": 44,
"item": {
"id": 7,
"rarity": 2,
"carryLimit": 10,
"value": 120,
"name": "Nulberry",
"description": "A mysterious berry that cures various blights."
},
"conditions": [
{
"type": "reward",
"rank": "low",
"quantity": 3,
"chance": 20,
"subtype": null
}
]
},
{
"id": 43,
"item": {
"id": 67,
"rarity": 1,
"carryLimit": 10,
"value": 5,
"name": "Raw Meat",
"description": "Meat carved from a monster. Can be cooked, combined, or used to set a trap."
},
"conditions": [
{
"type": "reward",
"rank": "low",
"quantity": 1,
"chance": 20,
"subtype": null
}
]
},
{
"id": 46,
"item": {
"id": 136,
"rarity": 4,
"carryLimit": 99,
"value": 500,
"name": "Sturdy Bone",
"description": "A bone used as crafting material. Can be found in bonepiles in the Coral Highlands and Rotten Vale."
},
"conditions": [
{
"type": "reward",
"rank": "low",
"quantity": 1,
"chance": 15,
"subtype": null
}
]
},
{
"id": 45,
"item": {
"id": 147,
"rarity": 3,
"carryLimit": 99,
"value": 30,
"name": "Monster Bone S",
"description": "A material found in bonepiles. Indispensable for both hunting and daily life."
},
"conditions": [
{
"type": "reward",
"rank": "low",
"quantity": 2,
"chance": 15,
"subtype": null
}
]
},
{
"id": 42,
"item": {
"id": 191,
"rarity": 4,
"carryLimit": 99,
"value": 180,
"name": "Wingdrake Hide",
"description": "A material carved from wingdrakes. Lightweight and often used when crafting armor."
},
"conditions": [
{
"type": "carve",
"rank": "low",
"quantity": 1,
"chance": 70,
"subtype": "Body"
},
{
"type": "reward",
"rank": "low",
"quantity": 1,
"chance": 30,
"subtype": null
}
]
},
{
"id": 47,
"item": {
"id": 193,
"rarity": 6,
"carryLimit": 99,
"value": 720,
"name": "Barnos Hide+",
"description": "Rare Barnos material. Obtained by carving. Supple, used to craft gear."
},
"conditions": [
{
"type": "carve",
"rank": "high",
"quantity": 1,
"chance": 70,
"subtype": "Body"
}
]
},
{
"id": 48,
"item": {
"id": 194,
"rarity": 6,
"carryLimit": 99,
"value": 820,
"name": "Barnos Talon",
"description": "Rare Barnos material. Obtained by carving. Unusual, used in select gear."
},
"conditions": [
{
"type": "carve",
"rank": "high",
"quantity": 1,
"chance": 30,
"subtype": "Body"
}
]
}
]
},
{
"id": 17,
"type": "large",
"species": "fanged wyvern",
"elements": [],
"name": "Great Jagras",
"description": "The pack leader of the Jagras. When hungry, Great Jagras are known to attack monsters even stronger than themselves. It balloons to unbelievable proportions after swallowing prey.",
"ailments": [],
"locations": [
{
"id": 1,
"zoneCount": 17,
"name": "Ancient Forest"
}
],
"resistances": [
{
"element": "water",
"condition": null
}
],
"weaknesses": [
{
"element": "fire",
"stars": 3,
"condition": null
},
{
"element": "thunder",
"stars": 2,
"condition": null
},
{
"element": "ice",
"stars": 2,
"condition": null
},
{
"element": "dragon",
"stars": 1,
"condition": null
},
{
"element": "poison",
"stars": 3,
"condition": null
},
{
"element": "sleep",
"stars": 3,
"condition": null
},
{
"element": "blast",
"stars": 3,
"condition": null
},
{
"element": "paralysis",
"stars": 3,
"condition": null
},
{
"element": "stun",
"stars": 3,
"condition": null
}
],
"rewards": []
},
{
"id": 18,
"type": "large",
"species": "bird wyvern",
"elements": [],
"name": "Kulu-Ya-Ku",
"description": "An odd bird wyvern that has developed limbs capable of carrying weapons. It's been spotted stealing eggs from nests found in the Ancient Forest and Wildspire Waste.",
"ailments": [],
"locations": [
{
"id": 1,
"zoneCount": 17,
"name": "Ancient Forest"
},
{
"id": 3,
"zoneCount": 15,
"name": "Wildspire Waste"
}
],
"resistances": [],
"weaknesses": [
{
"element": "fire",
"stars": 2,
"condition": null
},
{
"element": "water",
"stars": 3,
"condition": null
},
{
"element": "thunder",
"stars": 2,
"condition": null
},
{
"element": "ice",
"stars": 2,
"condition": null
},
{
"element": "dragon",
"stars": 2,
"condition": null
},
{
"element": "blast",
"stars": 2,
"condition": null
},
{
"element": "paralysis",
"stars": 2,
"condition": null
},
{
"element": "poison",
"stars": 2,
"condition": null
},
{
"element": "sleep",
"stars": 2,
"condition": null
},
{
"element": "stun",
"stars": 2,
"condition": null
}
],
"rewards": []
},
{
"id": 19,
"type": "large",
"species": "bird wyvern",
"elements": [],
"name": "Pukei-Pukei",
"description": "A bird wyvern known to possess poisonous toxins in its body. It's been spotted storing scatternuts in its mouth or tail, coating them with poison and spitting them out at threats.",
"ailments": [
{