-
Notifications
You must be signed in to change notification settings - Fork 9
/
quests.json
14632 lines (14632 loc) · 510 KB
/
quests.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
{
"quests": [
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b005d"
},
"name": "Unpious Peons",
"client": "Devout Felyne",
"description": "Those in-fur-nal Jagras keep messing with my visits to the Shrine Ruins. They're after the offur-ings I bring with me, those rude, blasphemous fiends! Send them running with their tails between their legs!",
"map": "Shrine Ruins",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "1",
"objective": "Slay 8 Jagras",
"targets": [
"Jagras"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b005e"
},
"name": "Fungal Frustrations",
"client": "Mushroom Restaurant Owner",
"description": "I've been dreaming of opening my own restaurant, but I spent so much time experimenting with the menu that I ran out of ingredients! I'll never be able to open if I don't get some more. Think you can help me out?",
"map": "Shrine Ruins",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "1",
"objective": "Deliver 8 Unique Mushrooms"
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b005f"
},
"name": "Help With Maintenance",
"client": "Young Carpenter",
"description": "I'm fixin' up the ol' camp, but I'm out of raw materials. Can't go get more 'cause everywhere ya go, Izuchi are snappin' and slashin' at ya. Think you can get 'em to scram so I can go get what I need?",
"map": "Shrine Ruins",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "1",
"objective": "Slay 8 Izuchi",
"targets": [
"Izuchi"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0060"
},
"name": "Roly-poly Lanterns",
"client": "Girly Village Maiden",
"description": "Firelanterns are, like, so pretty! So red. So round. Something about them is simply magical. I totally want see them all the time so maybe I should put 'em in my room? What do you say? Think you can get me some?",
"map": "Shrine Ruins",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "1",
"objective": "Deliver 8 Firelanterns"
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0061"
},
"name": "Grizzly Glutton",
"client": "Master Angler of Kamura",
"description": "This is terrible... If it goes on eating this much, there won't be a single fish left for us to catch! Hunt that thing before all the fish totally vanish from our rivers, will ya?",
"map": "Shrine Ruins",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "2",
"objective": "Hunt an Arzuros",
"targets": [
"Arzuros"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0062"
},
"name": "Plump and Juicy",
"client": "Crustacean Connoisseur",
"description": "Raftshells are just SO good. That gooeyness is to die for! And I almost did 'cause I couldn't stop stuffin' my face with 'em... Now my wife says I'm not allowed to have 'em anymore, but I can't take it!—I HAVE to have 'em! Think you can sneak me a few?",
"map": "Frost Islands",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "2",
"objective": "Deliver 10 Raftshells"
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0063"
},
"name": "A Frosty Paradise",
"client": "Sleep-averse Peddler",
"description": "The darndest thing keeps happening. Every time I use this path, I fall asleep! When I wake up, my stuff is all chewed up! I know this place is infested with monsters...maybe they're behind this! You gotta do something or my biz is done for!",
"map": "Frost Islands",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "2",
"objective": "Slay 10 Baggi",
"targets": [
"Baggi"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0064"
},
"name": "Out Cold",
"client": "Sanctimonious Felyne",
"description": "A Great Baggi and its little fur-iends were being a nuisance in the Fur-ost Islands, so I went to teach 'em a lesson. But when I got there, I passed out. Was it the cold? Just thinking about it makes me...so...slee—ZZZzzz...",
"map": "Frost Islands",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "2",
"objective": "Hunt a Great Baggi",
"targets": [
"Great Baggi"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0065"
},
"name": "Rabid Rabbit",
"client": "Timid Rookie Hunter",
"description": "I went hunting for some food but came across a Lagombi. I am NOT trying to get eaten by that thing. Hunter do you think you can take care of it for me, please?",
"map": "Frost Islands",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "2",
"objective": "Hunt a Lagombi",
"targets": [
"Lagombi"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0066"
},
"name": "Great Izuchi, Great Pain",
"client": "Yomogi the Chef",
"description": "A stupid Great Izuchi's going crazy at the Shrine Ruins, meaning my ingredients supplier is seriously in danger! Can you deal with that dumb Great Izuchi so my supplier can deliver the ingredients?",
"map": "Shrine Ruins",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "2",
"objective": "Hunt a Great Izuchi",
"targets": [
"Great Izuchi"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0067"
},
"name": "Case of the Creepy Crawlies",
"client": "Merchant's Wife",
"description": "Some kids were telling us about all the bugs at the Shrine Ruins. Creepy crawly bugs...bugs that fly—yuck! I am NOT going there with all those bugs! Can you go out and exterminate those pests!?",
"map": "Shrine Ruins",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "2",
"objective": "Slay a total of 14 Altaroth or Bnahabra",
"targets": [
"Altaroth",
"Bnahabra"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0068"
},
"name": "Hmm, Not So Tasty...",
"client": "Felyne Commis Chef",
"description": "Meow I'll never learn to cook meat! Too fast and it's raw, too slow and it's burnt... I need more purr-actice but I'm all out of Popo Tongues. Think you can get me some more?",
"map": "Frost Islands",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "2",
"objective": "Deliver 3 Popo Tonguesa"
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0069"
},
"name": "Can't Stomach the Thought",
"client": "Unflappable Biologist",
"description": "During a survey of the Frost Islands, I was attacked by a Tetranadon and found myself inside its gut! I managed to escape, but others might not be so lucky. Please hunt it before someone gets eaten!",
"map": "Frost Islands",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Hunt a Tetranadon",
"targets": [
"Tetranadon"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b006a"
},
"name": "Walking on Eggshells",
"client": "Sandy Plains Courier",
"description": "Blasted Kulu-Ya-Ku always stealing my Wyvern Eggs! I've tried and tried to make my way through the Sandy Plains but they get the jump on me every single time!",
"map": "Sandy Plains",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Hunt a Kulu-Ya-Ku",
"targets": [
"Kulu-Ya-Ku"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b006b"
},
"name": "Fightin' Dirty",
"client": "Master Mushroom Forager",
"description": "Ptoeey! Look at me! Covered from head to toe in mud! All because a stupid Barroth attacked me! Now all the mushrooms I gathered are ruined! Just great! Can you go and bash that Barroth, please!?",
"map": "Sandy Plains",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Hunt a Barroth",
"targets": [
"Barroth"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b006c"
},
"name": "Obnoxious Lord, Noxious Monster",
"client": "Lord's Aide",
"description": "Oh dear... The lord's son heard a Great Wroggi was in the Flooded Forest and went out to hunt it. What a fool. Surely he'll run at the first sign of danger. Can you hunt the creature before my lord gets hurt.",
"map": "Flooded Forest",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Hunt a Great Wroggi",
"targets": [
"Great Wroggi"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b006d"
},
"name": "Spongy Oasis",
"client": "Desert Inventor",
"description": "You know how Royal Ludroth hide is all spongey and absorbs lots of water, right? If we get a bunch of it, then desert farmers will never have to worry about watering their crops ever again! I. AM. A. GENIUS!",
"map": "Flooded Forest",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Hunt a Royal Ludroth",
"targets": [
"Royal Ludroth"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b006e"
},
"name": "Feathered Frenzy",
"client": "Buddy Handler Iori",
"description": "I'm sorry Hunter... Those Buddies heard that there were \"ghosts\" at the Shrine Ruins and ran off. I'm so worried about them with that Aknosom around. Can you hunt it while I go look for them!?",
"map": "Shrine Ruins",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Hunt a Aknosom",
"targets": [
"Aknosom"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b006f"
},
"name": "Supply Run",
"client": "Yomogi the Chef",
"description": "HELP! My supplier was ambushed by monsters, and dropped all their cargo on the way back to Kamura! It was near the Shrine Ruins—here, I'll mark it on your map, so can you get those ingredients back? Pleeease!?",
"map": "Shrine Ruins",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Deliver 6 Classic Drango Ingredients"
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0070"
},
"name": "Faceless Foe",
"client": "Scared Researcher",
"description": "Gross! There I was, taking a rest, when something wet dripped on my shoulder. I look up and—EW! Wrinkles, veins, and—ICK—a pale monster with no face that looks like a— *gag* Go hunt it PLEASE!",
"map": "Frost Islands",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Hunt a Khezu",
"targets": [
"Khezu"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0071"
},
"name": "The Cactus Diet",
"client": "Trend-chasing Woman",
"description": "This cactus diet has taken over my life. Cactus salad, cactus steak, cactus smoothies— you name it! But now I'm all out of Bauble Cactuses... Cacti? Whatever! Just go get me some!",
"map": "Sandy Plains",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Deliver 10 Bauble Cactus"
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0072"
},
"name": "A Sandy Cabal",
"client": "Wannabe Sleuth",
"description": "What a twist! I was attacked by some strange barking creatures, but in my desperation to escape, I could not clearly identify my assailants... Hunter, please, help me solve this riddle!",
"map": "Sandy Plains",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Slay a total of 14 Jaggi or Jaggia",
"targets": [
"Jaggi",
"Jaggia"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0073"
},
"name": "Breath of the Past",
"client": "Inquisitive Young Master",
"description": "Do you know of Simple Prisms? They call it a prism, but it's really a small animal fossil. That's what Father said. I've never seen a fossil, so I'd like to take a look at it. Please find one for me.",
"map": "Flooded Forest",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Deliver 10 Simple Prisms"
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0074"
},
"name": "Ladies of the Lake",
"client": "Gorgeous Lady",
"description": "I was looking for my lost husband in the Flooded Forest when I was attacked. I had heard tales of sirens dressed in yellow in the waters there. If I am to ever find my husband, I will need them gone.",
"map": "Flooded Forest",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "3",
"objective": "Slay 10 Ludroth",
"targets": [
"Ludroth"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0075"
},
"name": "Infernal Lacrimosa",
"client": "Earnest Hunter",
"description": "I was tasked to hunt a so-called \"Mermaid Dragon,\" in the Frost Islands. Upon arriving, I heard what sounded like a song and instantly fell asleep. I woke up back at camp covered in gashes and cuts. What happened out there!?",
"map": "Frost Islands",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Hunt a Somnacanth",
"targets": [
"Somnacanth"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0076"
},
"name": "Raging White-out",
"client": "Foreign Noble",
"description": "The area surrounding the Frost Islands is scarce in food as it is and now a Barioth has been spotted in the area. Surely we will starve if this nuisance isn't dealt with!",
"map": "Frost Islands",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Hunt a Barioth",
"targets": [
"Barioth"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0077"
},
"name": "The Queen's Procession",
"client": "Cheerful Man",
"description": "Woohoo! Ohhh man! The queen of the Sandy Plains is spewing fire everywhere! She burned all my stuff—even set my pants on fire, too! Haha! Wait...that's not funny... *ahem* Please hunt that Rathian!",
"map": "Sandy Plains",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Hunt a Rathian",
"targets": [
"Rathian"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0078"
},
"name": "Streaking Shadow",
"client": "Fledgling Investigator",
"description": "I was out exploring in the Flooded Forest, when suddenly, lightning struck. I looked to the sky and saw something zipping and zapping from tree to tree! I got away some- how, but others might not be so lucky. Please, do something!",
"map": "Flooded Forest",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Hunt a Tobi-Kadachi",
"targets": [
"Tobi-Kadachi"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0079"
},
"name": "A Song of Red and Fire",
"client": "Solitary Composer",
"description": "Can you hear that? The perfect melody of flowing lava, smoldering ash, and the bassy rumblings of the volcano all accompanied by the sound of Volvidon rolling around. Bravo! BRAVO!",
"map": "Lava Caverns",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Hunt a Volvidon",
"targets": [
"Volvidon"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b007a"
},
"name": "Off Your Rocker",
"client": "Lava Caverns Excavator",
"description": "Dude... I'm freaking out. Every time I go to the Lava Caverns, I keep hearing this creepy voice. Like, I look around, and no one is there! No one! Uh, can you go and check it out for me? I know I'm not crazy!",
"map": "Lava Caverns",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Hunt a Basarios",
"targets": [
"Basarios"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b007b"
},
"name": "Monkey Wrench in Your Plans",
"client": "Hamon the Blacksmith",
"description": "In order to separate Magnamalo from the Rampage, I need to complete my device. In order to do that, I need materials from a Bishaten. One has been spotted in the Shrine Ruins. Depart at once!",
"map": "Shrine Ruins",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Hunt a Bishaten",
"targets": [
"Bishaten"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b007c"
},
"name": "Getting Back the Groceries",
"client": "Yomogi the Chef",
"description": "I was cutting through the Lava Caverns one night when, out of nowhere, there was this SPOOKY roar! I freaked, dropped all my ingredients, and now...I'm way too scared to go back for them. Can you, um, go instead?",
"map": "Lava Caverns",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Deliver 6 Secret Dango Ingredients"
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b007d"
},
"name": "A Poisonous Project",
"client": "Antidote Researcher",
"description": "My research is everything to me! And this new antidote research shall be my legacy! In order to continue my work, I'll need you to fetch me a Pukei-Pukei specimen. But you'll need to bring your own antidotes...",
"map": "Flooded Forest",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Hunt a Pukei-Pukei",
"targets": [
"Pukei-Pukei"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b007e"
},
"name": "Deliver the Liver",
"client": "Boozy Youth",
"description": "Me and my pals are having a few drinks tonight, and we're hankerin' after some monster liver with 'em. Thing is, it's ONLY good when it's raw—and I ain't eating raw liver if it ain't fresh! Think you can hook us up?",
"map": "Sandy Plains",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Deliver 5 Monster Guts"
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b007f"
},
"name": "So Hot, It Melts Iron",
"client": "Foreign Smithy",
"description": "Where I'm from, if you want to make good equipment, ya gotta use lots of Coal. Maybe Kamura has some fancy pants way of doing it without coal, but we ain't got the facilities like you folks do here. Can you go get me some?",
"map": "Lava Caverns",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Deliver 12 pieces of Coal"
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0080"
},
"name": "THE BEST Quest",
"client": "Thoughtful Girl",
"description": "My daddy's THE BEST and I want to make THE BEST gloves for him. Mommy says that Rachnoid thread is THE BEST for making gloves so... Can you go and fight a few for me and bring me the thread? You'd be THE BEST if you did!",
"map": "Lava Caverns",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Slay 10 Rachnoid",
"targets": [
"Rachnoid"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0081"
},
"name": "Third Wheel",
"client": "Referee Girl",
"description": "\"In the right corner, Arzuros! And in the left corner, Tetranadon!\" Oh! You're here too!? Uh... \"In the middle, you!\" How's that? Yeah, uh, good luck! Hope you win!",
"map": "Arena",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "4",
"objective": "Hunt all target monsters",
"targets": [
"Arzuros",
"Tetranadon"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0082"
},
"name": "Wind Speed Wyvern",
"client": "Neighboring Hamlet's Envoy",
"description": "Nargacuga are so cool, right? And fast too! How is it that they are so light on their feet!? I MUST know! I bet if I made some Nargacuga shoes I could be just as fast as they are!",
"map": "Shrine Ruins",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "5",
"objective": "Hunt a Nargacuga",
"targets": [
"Nargacuga"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0083"
},
"name": "Electrifying Ephiphany",
"client": "Unflappable Biologist",
"description": "During a survey of the Shrine Ruins, I was struck by a bolt of lightning. At first, I thought perhaps some genius idea had come to fruition, but alas it was only a Zinogre...",
"map": "Shrine Ruins",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "5",
"objective": "Hunt a Zinogre",
"targets": [
"Zinogre"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0084"
},
"name": "Nocturnal Tracker",
"client": "Wandering Bard",
"description": "The Plains at night are quite elegant and inspiring... But someone or someTHING is following me. I feel so afraid that all my ideas and emotions are simply swept away! Please get rid of this stalker!",
"map": "Sandy Plains",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "5",
"objective": "Hunt a Anjanath",
"targets": [
"Anjanath"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0085"
},
"name": "Waltzing by Moonlight",
"client": "Traditional Dance Master",
"description": "O, how elegantly the Mizutsune steps, arcing through the air... It must be the fin! If I had one for my own, surely I could dance as it does too... I know! Hunter! Waltz with the wyvern, and I shall seize its fin!",
"map": "Flooded Forest",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "5",
"objective": "Hunt a Mizutsune",
"targets": [
"Mizutsune"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0086"
},
"name": "Rathalos Alert!",
"client": "Eagle-eyed Observer",
"description": "[REPORT BEGINS] Rathalos spotted in the Lava Caverns [STOP] Requesting support from all qualified hunters [STOP] Look out for the rain of fire from the sky [REPORT ENDS]",
"map": "Lava Caverns",
"isKey": true,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "5",
"objective": "Hunt a Rathalos",
"targets": [
"Rathalos"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0087"
},
"name": "Comeuppance",
"client": "Fugen the Elder",
"description": "Durin' the Rampage fifty years ago, Magnamalo showed up and caused an epic mess. We can't let that happen ever again. You gotta take down Magnamalo! Now go get to it!",
"map": "Shrine Ruins",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "5",
"objective": "Hunt a Magnamalo",
"targets": [
"Magnamalo"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0088"
},
"name": "The Secret Ingredient",
"client": "Yomogi the Chef",
"description": "So my idea is to make these new Bunny Dango that'll refresh you just like a power nap would. But to do that, I need you to capture a Somnacanth so I can use its song to make a recipe! I love you and please!",
"map": "Frost Islands",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "5",
"objective": "Hunt a Somnacanth",
"targets": [
"Somnacanth"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0089"
},
"name": "BZZZZZ or ZZZZzzzz",
"client": "Fussy Girlfriend",
"description": "My boyfriend is straight trippin'. He thinks that Somnacanth are cuter than Khezu. HELLO! Obviously Khezu are but he won't budge. Well, if he won't see it my way, then I guess we'll let you settle this!",
"map": "Frost Islands",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "5",
"objective": "Hunt a Khezu and a Somnacanth",
"targets": [
"Khezu",
"Somnacanth"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b008a"
},
"name": "Nosey Nuisances",
"client": "Barrel Bomb Maker",
"description": "These monsters are so annoying! First it was that bird-brain trying to peck me to death, then it was that pink snozz-o-saurus trying to blow mucus all over me. Wish those two would keep their noses out of my business! ARGH!",
"map": "Sandy Plains",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "5",
"objective": "Hunt a Kulu-Ya-Ku and an Anjanath",
"targets": [
"Kulu-Ya-Ku",
"Anjanath"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b008b"
},
"name": "The Hottest Around",
"client": "Curious Felyne",
"description": "A Volvidon rammed into a Tetranadon! I don't know what they were fighting over, but it was amazing! Until they came rolling my way and almost turned me into roadkill! Leave me outta this, will ya!",
"map": "Lava Caverns",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "5",
"objective": "Hunt a Tetranadon and a Volvidon",
"targets": [
"Tetranadon",
"Volvidon"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b008c"
},
"name": "Hermit of the Swamp",
"client": "Fugen the Elder",
"description": "An Almudron is makin' a real mess of things in the Shrine Ruins. They usually just keep to themselves up in the mountains... Could just be another effect of the Rampage Either way, we can't let it get any closer to the village. Now get to it!",
"map": "Shrine Ruins",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "6",
"objective": "Hunt an Almudron",
"targets": [
"Almudron"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b008d"
},
"name": "Abominable Snow-beast",
"client": "Tundra-dwelling Mother",
"description": "A monster in the Frost Islands has been roaring after dark. The cries have terrified my child, who now refuses to go to the toilet alone at night! Please, help us if you can!",
"map": "Frost Islands",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "6",
"objective": "Hunt an Goss Harag",
"targets": [
"Goss Harag"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b008e"
},
"name": "Thundering Voice",
"client": "Frost Islands Fugitive",
"description": "I hear roars echoing all over, no idea where they come from. I fear it might be a Tigrex! Wherever I hide, the growling follows. Please, I beg of you... Hunt the source of that sound before it catches up with me!",
"map": "Frost Islands",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "6",
"objective": "Hunt an Tigrex",
"targets": [
"Tigrex"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b008f"
},
"name": "Twisted Desire",
"client": "Smith's Son",
"description": "Those horns are so cool! Fit for a name like \"Diablos\" for sure, with that twisted shape. I'd love to get my hands on one and craft my store sign from it. I bet it'd do wonders for business!",
"map": "Sandy Plains",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "6",
"objective": "Hunt an Diablos",
"targets": [
"Diablos"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0090"
},
"name": "A Test of Courage",
"client": "Cowardly Felyne",
"description": "I'm no scaredy cat but the Shrine Ruins are haunted! HAUNTED, I tell ya! There was this big scary shadow with fireballs all around it and a ghost glowing in the distance surround by souls! Even meow I get chills just thinking about it! HELP!",
"map": "Shrine Ruins",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "6",
"objective": "Hunt Magnamalo and a Zinogre",
"targets": [
"Magnamalo",
"Zinogre"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0091"
},
"name": "Like a Flash of Lightning",
"client": "Talkative Senior Hunter",
"description": "Here's a favor for ya, rookie, from me. There's a Mizutsune and a Tobi-Kadachi dukin' it out in the Flooded Forest, and I'm lettin' YOU have at 'em! I'm feelin', uh...charitable today. Y-Yeah. Well, good luck!",
"map": "Flooded Forest",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "6",
"objective": "Hunt a Tobi-Kadachi and a Mizutsune",
"targets": [
"Tobi-Kadachi",
"Mizutsune"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0092"
},
"name": "King of the Sky, Bane of the Land",
"client": "Young General",
"description": "My subordinates had enough of their harsh missions and rebelled. I was forced to take responsibility and demoted to the Lava Caverns. I need to get better at my job, but to do so I need to survive first! Help!",
"map": "Lava Caverns",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "6",
"objective": "Hunt a Rathalos and a Tigrex",
"targets": [
"Rathalos",
"Tigrex"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ae1017b0092"
},
"name": "Advanced: The Veterans' Gala",
"client": "Fugen the Elder",
"description": "A Rajang, a Bazelgeuse, and Magnamalo all waitin' for ya in the Arena! Sky's the limit if you can outdo this trio. So aim sky-high, Squirt! Bwahaha!",
"map": "Arena",
"isKey": false,
"questType": "Village",
"game": "Monster Hunter Rise",
"difficulty": "6",
"objective": "Hunt all target monsters",
"targets": [
"Rajang",
"Bazelgeuse",
"Magnamalo"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0093"
},
"name": "Shady Monster",
"client": "Creepy Old Lady",
"description": "SAy tHeRe, hUNter~ eVEr sEeN A mOnSTeR tHAt hOPs oN One lEg? i hAvE...aND i'Ve nEveR bEen tHe sAMe sINcE—Hahaha! *hack* Those old ghost stories don't scare me none. HOW ABOUT YOU!?",
"map": "Shrine Ruins",
"isKey": true,
"questType": "Hub",
"game": "Monster Hunter Rise",
"difficulty": "1",
"objective": "Hunt an Aknosom",
"targets": [
"Aknosom"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0094"
},
"name": "Tired and Feathered",
"client": "Kamura's No.1 Egg Lover",
"description": "Thinks he's number one, does he? Just because he snatched my Gold Gargwa Egg? Well, you're gonna show him. You got that!? I'm number one around here. I'M NUMBER ONE!",
"map": "Shrine Ruins",
"isKey": true,
"questType": "Hub",
"game": "Monster Hunter Rise",
"difficulty": "1",
"objective": "Hunt a Kulu-Ya-Ku",
"targets": [
"Kulu-Ya-Ku"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0095"
},
"name": "Jumped in the Frost Islands",
"client": "Hunter Hiding Behind a Bush",
"description": "Psst! Hey, pal. I just got ruffed up by a gang of Izuchi and their \"great\" bozo leader. They took my pouch, my zenny—even my pants! Think ya could do me a solid and take care of 'em for me? And maybe, uh, get me some pants too, huh?",
"map": "Frost Islands",
"isKey": true,
"questType": "Hub",
"game": "Monster Hunter Rise",
"difficulty": "1",
"objective": "Hunt a Great Izuchi",
"targets": [
"Great Izuchi"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0096"
},
"name": "No Cure for the Common Baggi",
"client": "Sneezing Felyne",
"description": "YUCK! Fur-st a Great Baggi *sniff* spits all over me! *sniff* THEN I fall asleep out in the Frost Islands, and now *sniff* I think I'm coming down with something! Nya...Nya... *sniff* Nya...NYACHOO! *sniff*",
"map": "Frost Islands",
"isKey": true,
"questType": "Hub",
"game": "Monster Hunter Rise",
"difficulty": "1",
"objective": "Hunt a Great Baggi",
"targets": [
"Great Baggi"
]
},
{
"_id": {
"$oid": "608fc50ddc2d8ce1017b0097"
},
"name": "A Snowball's Chance...",
"client": "Hapless Trader",
"description": "I absolutely cannot believe how awful my luck is. No way that thing could've hit me! There I was...bobbing...weaving. Zigging...zagging. Just when I thought I had gotten away from this Lagombi *BAM* me and all my goods crushed by a snowball. Unbelievable...",
"map": "Frost Islands",
"isKey": true,
"questType": "Hub",
"game": "Monster Hunter Rise",
"difficulty": "1",
"objective": "Hunt a Lagombi",
"targets": [