This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeginnermission.json
974 lines (974 loc) · 35.4 KB
/
beginnermission.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
[
{
"description": "キャラクターの能力値が5アップ(バトルor遠征をすると確率でアップ)",
"description_en": "Character's ability values are increased by 5 (probability increases when you do battle or expedition)",
"description_en_src": "ml",
"id": 60001,
"priority": 9999999,
"reward_id": 810003,
"reward_quantity": 20,
"reward_type": 8,
"step": 1,
"summary": "能力値5アップ<br>(バトル,遠征で確率)"
},
{
"description": "プレイヤーRankが8に到達",
"description_en": "Player Rank reaches 8",
"description_en_src": "ml",
"id": 60002,
"priority": 9999998,
"reward_id": 100003,
"reward_quantity": 1000000,
"reward_type": 1,
"step": 1,
"summary": "プレイヤーRankが8に到達"
},
{
"description": "プレイヤーRankが10に到達",
"description_en": "Player Rank reaches 10",
"description_en_src": "ml",
"id": 60003,
"priority": 9999997,
"reward_id": 501400100,
"reward_quantity": 200,
"reward_type": 26,
"step": 1,
"summary": "プレイヤーRankが10に到達"
},
{
"description": "道場で、遠征即時帰還を合計10回実行(ホーム>道場で遠征可能)",
"description_en": "Perform a total of 10 expedition immediate returns at the dojo (Home > Expeditions are possible at the dojo)",
"description_en_src": "ml",
"id": 60004,
"priority": 9999996,
"reward_id": 830001,
"reward_quantity": 1000,
"reward_type": 11,
"step": 1,
"summary": "遠征即時帰還を<br>10回実行<br>(道場で実行)"
},
{
"description": "収集クエストの洞窟のいずれかのクエストをクリア(フリークエスト>普遍の記録>収集クエストで挑戦可能)",
"description_en": "Clear any quest in the Gathering Quest Cave (can be challenged with Free Quests > Universal Records > Gathering Quests)",
"description_en_src": "ml",
"id": 60005,
"priority": 9999995,
"reward_id": 821196,
"reward_quantity": 500,
"reward_type": 10,
"step": 1,
"summary": "収集クエストの洞窟を<br>クリア<br>(フリークエストで挑戦)"
},
{
"description": "駆け出しの草原の「【さいしょの戦い】」をクリアする(フリークエスト>普遍の記録>駆け出しの草原で挑戦可能)",
"description_en": "Complete “[Battle of Saisho]” in Fledgling Prairie (Free Quest> Universal Record > You can challenge in Fledgling Prairie)",
"description_en_src": "ml",
"id": 60006,
"priority": 9999994,
"reward_id": 860015,
"reward_quantity": 3000,
"reward_type": 7,
"step": 1,
"summary": "駆け出しの草原<br>【さいしょの戦い】<br>クリア<br>(フリークエストで挑戦)"
},
{
"description": "道場で、スタイル1体のスタイルLvが3に到達(道場>スタイル強化で実行可能)",
"description_en": "At the dojo, the style level of 1 style reached 3 (can be executed by Dojo > Style Enhancement)",
"description_en_src": "ml",
"id": 60007,
"priority": 9999993,
"reward_id": 663001,
"reward_quantity": 200,
"reward_type": 5,
"step": 1,
"summary": "スタイルLv3到達<br>(道場で強化)"
},
{
"description": "道場で、スタイル1体のスタイルLvが10に到達(道場>スタイル強化で実行可能)",
"description_en": "At the dojo, the style level of 1 style reaches 10 (can be executed at Dojo > Style Enhancement)",
"description_en_src": "ml",
"id": 60008,
"priority": 9999992,
"reward_id": 664001,
"reward_quantity": 300,
"reward_type": 5,
"step": 1,
"summary": "スタイルLv10到達<br>(道場で強化)"
},
{
"description": "いずれかの技・術を1回習得",
"description_en": "Learn any technique or jutsu once",
"description_en_src": "ml",
"id": 60009,
"priority": 9999991,
"reward_id": 502400100,
"reward_quantity": 200,
"reward_type": 26,
"step": 1,
"summary": "いずれかの技・術を1回習得"
},
{
"description": "プレイヤーRankが15に到達",
"description_en": "Player Rank reaches 15",
"description_en_src": "ml",
"id": 60010,
"priority": 9999990,
"reward_id": 223211,
"reward_quantity": 200,
"reward_type": 3,
"step": 2,
"summary": "プレイヤーRankが<br>15に到達"
},
{
"description": "道場で、遠征即時帰還を合計50回実行(ホーム>道場で遠征可能)",
"description_en": "Perform a total of 50 expedition immediate returns at the dojo (Home > Expeditions are possible at the dojo)",
"description_en_src": "ml",
"id": 60011,
"priority": 9999989,
"reward_id": 830001,
"reward_quantity": 4000,
"reward_type": 11,
"step": 2,
"summary": "遠征即時帰還を<br>50回実行<br>(道場で実行)"
},
{
"description": "ガチャ実行するなどで所持スタイルの数が30体に達する",
"description_en": "The number of styles you own reaches 30 when you run gacha etc.",
"description_en_src": "ml",
"id": 60012,
"priority": 9999988,
"reward_id": 960001,
"reward_quantity": 600,
"reward_type": 33,
"step": 2,
"summary": "所持スタイルの数が30体に達する"
},
{
"description": "道場で、スタイル1体のスタイルLvが20に到達(道場>スタイル強化で実行可能)",
"description_en": "At the dojo, the style level of 1 style reaches 20 (dojo > style enhancement can be executed)",
"description_en_src": "ml",
"id": 60013,
"priority": 9999987,
"reward_id": 810003,
"reward_quantity": 20,
"reward_type": 8,
"step": 2,
"summary": "スタイルLv20到達<br>(道場で強化)"
},
{
"description": "道場で、スタイル1体のスタイルLvが30に到達(道場>スタイル強化で実行可能)",
"description_en": "At the dojo, the style level of 1 style reached 30 (can be executed by Dojo > Style Enhancement)",
"description_en_src": "ml",
"id": 60014,
"priority": 9999986,
"reward_id": 810003,
"reward_quantity": 20,
"reward_type": 8,
"step": 2,
"summary": "スタイルLv30到達<br>(道場で強化)"
},
{
"description": "フリークエストにてどれか1つ以上のステージのステージLvを1上げる.",
"description_en": "Raise the level level of one or more of the stages by 1 in free quests.",
"description_en_src": "ml",
"id": 60015,
"priority": 9999985,
"reward_id": 860015,
"reward_quantity": 3000,
"reward_type": 7,
"step": 2,
"summary": "ステージLvを<br>1上げる<br>(フリークエストで挑戦)"
},
{
"description": "鍛冶屋で、装備品1個のLvが2に到達(ホーム>鍛冶屋で強化可能)",
"description_en": "Reach Lv 2 for 1 piece of equipment in the Blacksmith Shop (Home > Can be enhanced at the Blacksmith)",
"description_en_src": "ml",
"id": 60016,
"priority": 9999984,
"reward_id": 223211,
"reward_quantity": 200,
"reward_type": 3,
"step": 2,
"summary": "装備品Lv2到達<br>(鍛冶屋で強化)"
},
{
"description": "鍛冶屋で、装備品1個のLvが5に到達(ホーム>鍛冶屋で強化可能)",
"description_en": "Reach Lv 5 for 1 piece of equipment in the Blacksmith Shop (Home > Can be enhanced at the Blacksmith)",
"description_en_src": "ml",
"id": 60017,
"priority": 9999983,
"reward_id": 223211,
"reward_quantity": 200,
"reward_type": 3,
"step": 2,
"summary": "装備品Lv5到達<br>(鍛冶屋で強化)"
},
{
"description": "いずれかのクエストで敵を累計10体討伐する",
"description_en": "Defeat a total of 10 enemies in any quest",
"description_en_src": "ml",
"id": 60018,
"priority": 9999982,
"reward_id": 501400100,
"reward_quantity": 200,
"reward_type": 26,
"step": 2,
"summary": "敵を累計<br>10体討伐"
},
{
"description": "プレイヤーRankが20に到達",
"description_en": "Player Rank reaches 20",
"description_en_src": "ml",
"id": 60019,
"priority": 9999981,
"reward_id": 665001,
"reward_quantity": 100,
"reward_type": 5,
"step": 3,
"summary": "プレイヤーRankが<br>20に到達"
},
{
"description": "プレイヤーRankが30に到達",
"description_en": "Player Rank reaches 30",
"description_en_src": "ml",
"id": 60020,
"priority": 9999980,
"reward_id": 229207,
"reward_quantity": 200,
"reward_type": 3,
"step": 3,
"summary": "プレイヤーRankが<br>30に到達"
},
{
"description": "道場で、遠征即時帰還を合計100回実行(ホーム>道場で遠征可能)",
"description_en": "Execute a total of 100 expedition immediate returns at the dojo (home > expeditions are possible at the dojo)",
"description_en_src": "ml",
"id": 60021,
"priority": 9999979,
"reward_id": 830001,
"reward_quantity": 4000,
"reward_type": 11,
"step": 3,
"summary": "遠征即時帰還を<br>100回実行<br>(道場で実行)"
},
{
"description": "道場で、スタイル限界突破を累計5回行う(道場>スタイル限界突破で実行可能)",
"description_en": "Break through the style limit a total of 5 times at the dojo (dojo > style limit breakthrough can be executed)",
"description_en_src": "ml",
"id": 60022,
"priority": 9999978,
"reward_id": 503400100,
"reward_quantity": 200,
"reward_type": 26,
"step": 3,
"summary": "スタイル限界突破を<br>累計5回実行<br>(道場で強化)"
},
{
"description": "鍛冶屋で、装備品1個を進化させる(ホーム>鍛冶屋で進化可能)",
"description_en": "Evolve 1 piece of equipment at the blacksmith shop (Home > Can evolve at the blacksmith shop)",
"description_en_src": "ml",
"id": 60023,
"priority": 9999977,
"reward_id": 229207,
"reward_quantity": 200,
"reward_type": 3,
"step": 3,
"summary": "装備品1回進化<br>(鍛冶屋で進化)"
},
{
"description": "道場で、スタイル1体のスタイルLvが35に到達(道場>スタイル強化で実行可能)",
"description_en": "At the dojo, the style level of 1 style reached 35 (dojo > style enhancement can be executed)",
"description_en_src": "ml",
"id": 60024,
"priority": 9999976,
"reward_id": 229207,
"reward_quantity": 200,
"reward_type": 3,
"step": 3,
"summary": "スタイルLv35到達<br>(道場で強化)"
},
{
"description": "いずれかのクエストで敵を累計20体討伐する",
"description_en": "Defeat a total of 20 enemies in any quest",
"description_en_src": "ml",
"id": 60025,
"priority": 9999975,
"reward_id": 860015,
"reward_quantity": 3000,
"reward_type": 7,
"step": 3,
"summary": "敵を累計<br>20体討伐"
},
{
"description": "螺旋回廊10階をクリアする(チャレンジ>螺旋回廊で挑戦可能)<br>プレイヤーRankが16に到達で解放<br> ※螺旋回廊は一時的に閉じている場合があります",
"description_en": "<br><br>Clear the 10th floor of the Helix Corridor (Challenge > Can be challenged with the Helix Corridor) Unlock when player Rank reaches 16 ※The Helix Corridor may be temporarily closed",
"description_en_src": "ml",
"id": 60026,
"priority": 9999974,
"reward_id": 810003,
"reward_quantity": 20,
"reward_type": 8,
"step": 3,
"summary": "チャレンジモード<br>螺旋回廊10階クリア"
},
{
"description": "駆け出しの草原の「【遠征をして育成してから挑もう】」をクリアする(フリークエスト>普遍の記録>駆け出しの草原で挑戦可能)",
"description_en": "Complete “[Let's go on an expedition, train, and then challenge]” in Fledgling Prairie (Free Quest> Universal Record > You can challenge in Fledgling Prairie)",
"description_en_src": "ml",
"id": 60027,
"priority": 9999973,
"reward_id": 860015,
"reward_quantity": 3000,
"reward_type": 7,
"step": 3,
"summary": "駆け出しの草原<br>【遠征をして育成してから挑もう】クリア<br>(フリークエストで挑戦)"
},
{
"description": "冒険者ランクが2に到達する",
"description_en": "Reach Adventurer Rank 2",
"description_en_src": "ml",
"id": 60130,
"priority": 9999972,
"reward_id": 503500100,
"reward_quantity": 200,
"reward_type": 26,
"step": 1,
"summary": "冒険者ランクが2に到達する"
},
{
"description": "プレイヤーRankが40に到達",
"description_en": "Player Rank reaches 40",
"description_en_src": "ml",
"id": 60131,
"priority": 9999971,
"reward_id": 303001,
"reward_quantity": 15,
"reward_type": 4,
"step": 1,
"summary": "プレイヤーRankが<br>40に到達"
},
{
"description": "ロマンシングショップでSS武器などの報酬を1回交換を行う<br>(ホーム>ロマンシングショップで交換可能)",
"description_en": "<br>Exchange rewards such as SS weapons once at the Romancing Shop (can be exchanged at Home > Romancing Shop)",
"description_en_src": "ml",
"id": 60132,
"priority": 9999970,
"reward_id": 860015,
"reward_quantity": 5000,
"reward_type": 7,
"step": 1,
"summary": "ロマンシングショップで<br>SS武器などの報酬を<br>1回交換"
},
{
"description": "道場で、遠征即時帰還を合計150回実行(ホーム>道場で遠征可能)",
"description_en": "Perform a total of 150 expedition immediate returns at the dojo (Home > Expeditions are possible at the dojo)",
"description_en_src": "ml",
"id": 60133,
"priority": 9999969,
"reward_id": 830001,
"reward_quantity": 5000,
"reward_type": 11,
"step": 1,
"summary": "遠征即時帰還を<br>150回実行<br>(道場で実行)"
},
{
"description": "昇段試験を1回昇段する(ホーム>道場で昇段可能)",
"description_en": "Get promoted once on the promotion exam (Home > Promotion is possible at the dojo)",
"description_en_src": "ml",
"id": 60134,
"priority": 9999968,
"reward_id": 501500100,
"reward_quantity": 200,
"reward_type": 26,
"step": 1,
"summary": "昇段試験を<br>1回昇段<br>(道場で実行)"
},
{
"description": "いずれかのクエストで敵を累計100体討伐する",
"description_en": "Defeat a total of 100 enemies in any quest",
"description_en_src": "ml",
"id": 60135,
"priority": 9999967,
"reward_id": 663001,
"reward_quantity": 200,
"reward_type": 5,
"step": 1,
"summary": "敵を累計<br>100体討伐"
},
{
"description": "道場で、技・術覚醒を1回行う(道場>技・術覚醒で覚醒可能)",
"description_en": "Perform a Technique/Jutsu Awakening once at the Dojo (Awakening is possible with Dojo > Technique/Jutsu Awakening)",
"description_en_src": "ml",
"id": 60136,
"priority": 9999966,
"reward_id": 502500100,
"reward_quantity": 200,
"reward_type": 26,
"step": 1,
"summary": "技・術を1回覚醒<br>(道場で覚醒)"
},
{
"description": "フリークエストの「宝箱を開ける」を10回実行する",
"description_en": "Perform the free quest “Open the Treasure Chest” 10 times",
"description_en_src": "ml",
"id": 60137,
"priority": 9999965,
"reward_id": 403030,
"reward_quantity": 230,
"reward_type": 4,
"step": 1,
"summary": "「宝箱を開ける」を<br>10回実行<br>(フリークエストで実行)"
},
{
"description": "フリークエストにてどれか1つ以上のステージのステージLvを合計10上げる",
"description_en": "Raise the total level level of any one or more stages by 10 in free quests",
"description_en_src": "ml",
"id": 60138,
"priority": 9999964,
"reward_id": 404030,
"reward_quantity": 375,
"reward_type": 4,
"step": 1,
"summary": "ステージLvを<br>合計10上げる<br>(フリークエストで挑戦)"
},
{
"description": "プレイヤーRankが60に到達",
"description_en": "Player Rank reaches 60",
"description_en_src": "ml",
"id": 60139,
"priority": 9999963,
"reward_id": 405030,
"reward_quantity": 150,
"reward_type": 4,
"step": 2,
"summary": "プレイヤーRankが<br>60に到達"
},
{
"description": "プレイヤーRankが70に到達",
"description_en": "Player Rank reaches 70",
"description_en_src": "ml",
"id": 60140,
"priority": 9999962,
"reward_id": 860015,
"reward_quantity": 5000,
"reward_type": 7,
"step": 2,
"summary": "プレイヤーRankが<br>70に到達"
},
{
"description": "道場で、遠征即時帰還を合計200回実行(ホーム>道場で遠征可能)",
"description_en": "Execute a total of 200 expedition immediate returns at the dojo (home > expeditions are possible at the dojo)",
"description_en_src": "ml",
"id": 60141,
"priority": 9999961,
"reward_id": 830001,
"reward_quantity": 5000,
"reward_type": 11,
"step": 2,
"summary": "遠征即時帰還を<br>200回実行<br>(道場で実行)"
},
{
"description": "鍛冶屋で、装備品を累計2回進化させる(ホーム>鍛冶屋で進化可能)",
"description_en": "Evolve equipment 2 times in total at the blacksmith shop (Home > Can you evolve at the blacksmith shop)",
"description_en_src": "ml",
"id": 60142,
"priority": 9999960,
"reward_id": 100003,
"reward_quantity": 2000000,
"reward_type": 1,
"step": 2,
"summary": "装備品<br>累計2回進化<br>(鍛冶屋で強化)"
},
{
"description": "道場で、スタイル限界突破を累計10回行う(道場>スタイル限界突破で実行可能)",
"description_en": "Break through the style limit a total of 10 times at the dojo (dojo > style limit breakthrough can be executed)",
"description_en_src": "ml",
"id": 60143,
"priority": 9999959,
"reward_id": 664001,
"reward_quantity": 300,
"reward_type": 5,
"step": 2,
"summary": "スタイル限界突破を<br>累計10回実行<br>(道場で強化)"
},
{
"description": "いずれかのクエストで敵を累計300体討伐する",
"description_en": "Defeat a total of 300 enemies in any quest",
"description_en_src": "ml",
"id": 60144,
"priority": 9999958,
"reward_id": 304001,
"reward_quantity": 20,
"reward_type": 4,
"step": 2,
"summary": "敵を累計<br>300体討伐"
},
{
"description": "フリークエストの「宝箱を開ける」を20回実行する",
"description_en": "Perform the free quest “Open the Treasure Chest” 20 times",
"description_en_src": "ml",
"id": 60145,
"priority": 9999957,
"reward_id": 305001,
"reward_quantity": 15,
"reward_type": 4,
"step": 2,
"summary": "「宝箱を開ける」を<br>20回実行<br>(フリークエストで実行)"
},
{
"description": "クエストを100回クリアする",
"description_en": "Complete 100 quests",
"description_en_src": "ml",
"id": 60146,
"priority": 9999956,
"reward_id": 665001,
"reward_quantity": 100,
"reward_type": 5,
"step": 2,
"summary": "クエストを<br>100回クリア"
},
{
"description": "螺旋回廊20階をクリア(チャレンジ>螺旋回廊で挑戦可能)<br> ※螺旋回廊は一時的に閉じている場合があります",
"description_en": "<br>Clear the 20th floor of the Spiral Corridor (you can challenge at Challenge > Spiral Corridor) *The Spiral Corridor may be temporarily closed",
"description_en_src": "ml",
"id": 60147,
"priority": 9999955,
"reward_id": 860015,
"reward_quantity": 5000,
"reward_type": 7,
"step": 2,
"summary": "チャレンジモードの<br>螺旋回廊20階<br>クリア"
},
{
"description": "プレイヤーRankが75に到達",
"description_en": "Player Rank reaches 75",
"description_en_src": "ml",
"id": 60148,
"priority": 9999954,
"reward_id": 100003,
"reward_quantity": 3000000,
"reward_type": 1,
"step": 3,
"summary": "プレイヤーRankが<br>75に到達"
},
{
"description": "道場で、遠征即時帰還を合計250回実行(ホーム>道場で遠征可能)",
"description_en": "Perform a total of 250 expedition immediate returns at the dojo (Home > Expeditions are possible at the dojo)",
"description_en_src": "ml",
"id": 60149,
"priority": 9999953,
"reward_id": 830001,
"reward_quantity": 5000,
"reward_type": 11,
"step": 3,
"summary": "遠征即時帰還を<br>250回実行<br>(道場で実行)"
},
{
"description": "裏能力値を1回解放(ホーム>道場で裏能力解放可能)",
"description_en": "Unlock secret ability values once (home > secret abilities can be unlocked in the dojo)",
"description_en_src": "ml",
"id": 60150,
"priority": 9999952,
"reward_id": 690024,
"reward_quantity": 150,
"reward_type": 5,
"step": 3,
"summary": "裏能力値を<br>1回解放<br>(道場で実行)"
},
{
"description": "昇段試験を10回昇段する(ホーム>道場で昇段可能)",
"description_en": "Take the promotion exam 10 times (Home > Promotion is possible at the dojo)",
"description_en_src": "ml",
"id": 60151,
"priority": 9999951,
"reward_id": 880009,
"reward_quantity": 400,
"reward_type": 20,
"step": 3,
"summary": "昇段試験を<br>10回昇段<br>(道場で実行)"
},
{
"description": "鍛冶屋で、SS装備品1個の進化段階を4に到達させる(ホーム>鍛冶屋で進化可能)",
"description_en": "Reach evolution level 4 for 1 piece of SS equipment in the blacksmith shop (Home > Can evolve at the blacksmith shop)",
"description_en_src": "ml",
"id": 60152,
"priority": 9999950,
"reward_id": 860015,
"reward_quantity": 5000,
"reward_type": 7,
"step": 3,
"summary": "SS装備品1個の進化段階を4に到達させる<br>(鍛冶屋で強化)"
},
{
"description": "フリークエストにてステージLvを合計25上げる",
"description_en": "Raise your level level by a total of 25 in free quests",
"description_en_src": "ml",
"id": 60153,
"priority": 9999949,
"reward_id": 881001,
"reward_quantity": 120,
"reward_type": 20,
"step": 3,
"summary": "ステージLvを<br>合計25上げる<br>(フリークエストで挑戦)"
},
{
"description": "スコアバトルに1回挑戦する(フリークエスト>普遍の記録で挑戦可能)",
"description_en": "Challenge a score battle once (free quest > you can challenge with a universal record)",
"description_en_src": "ml",
"id": 60154,
"priority": 9999948,
"reward_id": 674001,
"reward_quantity": 6000,
"reward_type": 5,
"step": 3,
"summary": "スコアバトルに<br>1回挑戦<br>(フリークエストで挑戦)"
},
{
"description": "螺旋回廊30階をクリア(チャレンジ>螺旋回廊で挑戦可能)<br> ※螺旋回廊は一時的に閉じている場合があります",
"description_en": "<br>Clear the 30th floor of the Spiral Corridor (you can challenge at Challenge > Spiral Corridor) *The Spiral Corridor may be temporarily closed",
"description_en_src": "ml",
"id": 60155,
"priority": 9999947,
"reward_id": 675001,
"reward_quantity": 1750,
"reward_type": 5,
"step": 3,
"summary": "チャレンジモードの<br>螺旋回廊30階<br>クリア"
},
{
"description": "いずれかのクエストで敵を累計500体討伐する",
"description_en": "Defeat a total of 500 enemies in any quest",
"description_en_src": "ml",
"id": 60156,
"priority": 9999946,
"reward_id": 665001,
"reward_quantity": 200,
"reward_type": 5,
"step": 3,
"summary": "敵を累計<br>500体討伐"
},
{
"description": "プレイヤーRankが90に到達",
"description_en": "Player Rank reaches 90",
"description_en_src": "ml",
"id": 60230,
"priority": 9999945,
"reward_id": 304001,
"reward_quantity": 20,
"reward_type": 4,
"step": 1,
"summary": "プレイヤーRankが<br>90に到達"
},
{
"description": "道場で、遠征即時帰還を合計300回実行(ホーム>道場で遠征可能)",
"description_en": "Execute a total of 300 expedition immediate returns at the dojo (home > expeditions are possible at the dojo)",
"description_en_src": "ml",
"id": 60231,
"priority": 9999944,
"reward_id": 830001,
"reward_quantity": 5000,
"reward_type": 11,
"step": 1,
"summary": "遠征即時帰還を<br>300回実行<br>(道場で実行)"
},
{
"description": "錬成を1回実行する(ホーム>鍛冶屋で錬成可能)",
"description_en": "Perform refining once (Home > Refining is possible at the blacksmith shop)",
"description_en_src": "ml",
"id": 60232,
"priority": 9999943,
"reward_id": 303001,
"reward_quantity": 15,
"reward_type": 4,
"step": 1,
"summary": "錬成を1回実行<br>(鍛冶屋で錬成)"
},
{
"description": "フリークエストの「宝箱を開ける」を50回実行する",
"description_en": "Perform the free quest “Open the Treasure Chest” 50 times",
"description_en_src": "ml",
"id": 60233,
"priority": 9999942,
"reward_id": 305001,
"reward_quantity": 15,
"reward_type": 4,
"step": 1,
"summary": "「宝箱を開ける」を<br>50回実行<br>(フリークエストで実行)"
},
{
"description": "フリークエストにてステージLvを合計50上げる",
"description_en": "Raise your total level level by 50 in free quests",
"description_en_src": "ml",
"id": 60234,
"priority": 9999941,
"reward_id": 881002,
"reward_quantity": 120,
"reward_type": 20,
"step": 1,
"summary": "ステージLvを<br>合計50上げる<br>(フリークエストで挑戦)"
},
{
"description": "駆け出しの草原の「【装備・スタイルを強化してから挑もう】」をクリアする(フリークエスト>普遍の記録>駆け出しの草原で挑戦可能)",
"description_en": "Complete “[Let's Challenge After Strengthening Equipment and Style]” in Fledgling Prairie (Free Quest> Universal Record > You can challenge in Fledgling Grassland)",
"description_en_src": "ml",
"id": 60235,
"priority": 9999940,
"reward_id": 810003,
"reward_quantity": 20,
"reward_type": 8,
"step": 1,
"summary": "駆け出しの草原<br>【装備・スタイルを強化してから挑もう】クリア<br>(フリークエストで挑戦)"
},
{
"description": "道場で、スタイル限界突破を累計20回行う(道場>スタイル限界突破で実行可能)",
"description_en": "Break through the style limit a total of 20 times at the dojo (dojo > style limit breakthrough can be executed)",
"description_en_src": "ml",
"id": 60236,
"priority": 9999939,
"reward_id": 860015,
"reward_quantity": 5000,
"reward_type": 7,
"step": 1,
"summary": "スタイル限界突破を<br>累計20回実行<br>(道場で強化)"
},
{
"description": "ロマンシングショップで<br>SS武器などの報酬を<br>2回交換を行う",
"description_en": "<br><br>Exchange rewards such as SS weapons twice at the Romancing Shop",
"description_en_src": "ml",
"id": 60237,
"priority": 9999938,
"reward_id": 100003,
"reward_quantity": 1000000,
"reward_type": 1,
"step": 1,
"summary": "ロマンシングショップで<br>SS武器などの報酬を<br>2回交換を行う"
},
{
"description": "クエストを200回クリアする",
"description_en": "Complete 200 quests",
"description_en_src": "ml",
"id": 60238,
"priority": 9999937,
"reward_id": 1100868,
"reward_quantity": 30000,
"reward_type": 7,
"step": 1,
"summary": "クエストを<br>200回クリア"
},
{
"description": "冒険者ランクが3に到達する",
"description_en": "Reach Adventurer Rank 3",
"description_en_src": "ml",
"id": 60239,
"priority": 9999936,
"reward_id": 303001,
"reward_quantity": 15,
"reward_type": 4,
"step": 2,
"summary": "冒険者ランクが3に到達する"
},
{
"description": "プレイヤーRankが100に到達",
"description_en": "Player Rank reaches 100",
"description_en_src": "ml",
"id": 60240,
"priority": 9999935,
"reward_id": 304001,
"reward_quantity": 20,
"reward_type": 4,
"step": 2,
"summary": "プレイヤーRankが<br>100に到達"
},
{
"description": "道場で、遠征即時帰還を合計400回実行(ホーム>道場で遠征可能)",
"description_en": "Execute a total of 400 expedition immediate returns at the dojo (Home > Expeditions are possible at the dojo)",
"description_en_src": "ml",
"id": 60241,
"priority": 9999934,
"reward_id": 830001,
"reward_quantity": 5000,
"reward_type": 11,
"step": 2,
"summary": "遠征即時帰還を<br>400回実行<br>(道場で実行)"
},
{
"description": "フリークエストの「宝箱を開ける」を70回実行する",
"description_en": "Perform the free quest “Open the Treasure Chest” 70 times",
"description_en_src": "ml",
"id": 60242,
"priority": 9999933,
"reward_id": 305001,
"reward_quantity": 15,
"reward_type": 4,
"step": 2,
"summary": "「宝箱を開ける」を<br>70回実行<br>(フリークエストで実行)"
},
{
"description": "フリークエストにてステージLvを合計75上げる",
"description_en": "Raise a total of level Lv by 75 in free quests",
"description_en_src": "ml",
"id": 60243,
"priority": 9999932,
"reward_id": 881003,
"reward_quantity": 120,
"reward_type": 20,
"step": 2,
"summary": "ステージLvを合計75上げる<br>(フリークエストで挑戦)"
},
{
"description": "いずれかのクエストで敵を累計1500体討伐する",
"description_en": "Defeat a total of 1500 enemies in any quest",
"description_en_src": "ml",
"id": 60244,
"priority": 9999931,
"reward_id": 860015,
"reward_quantity": 5000,
"reward_type": 7,
"step": 2,
"summary": "敵を累計<br>1500体討伐"
},
{
"description": "道場で、スタイル限界突破を累計30回行う(道場>スタイル限界突破で実行可能)",
"description_en": "Break through the style limit a total of 30 times at the dojo (dojo > style limit breakthrough can be executed)",
"description_en_src": "ml",
"id": 60245,
"priority": 9999930,
"reward_id": 880009,
"reward_quantity": 400,
"reward_type": 20,
"step": 2,
"summary": "スタイル限界突破を<br>累計30回実行<br>(道場で強化)"
},
{
"description": "裏能力値を5回解放",
"description_en": "Unlock secret ability values 5 times",
"description_en_src": "ml",
"id": 60246,
"priority": 9999929,
"reward_id": 100003,
"reward_quantity": 5000000,
"reward_type": 1,
"step": 2,
"summary": "裏能力値を<br>5回解放<br>(道場で実行)"
},
{
"description": "クエストを300回クリアする",
"description_en": "Complete 300 quests",
"description_en_src": "ml",
"id": 60247,
"priority": 9999928,
"reward_id": 1100868,
"reward_quantity": 15000,
"reward_type": 7,
"step": 2,
"summary": "クエストを<br>300回クリア"
},
{
"description": "冒険者ランクが4に到達する",
"description_en": "Reach Adventurer Rank 4",
"description_en_src": "ml",
"id": 60248,
"priority": 9999927,
"reward_id": 303001,
"reward_quantity": 15,
"reward_type": 4,
"step": 3,
"summary": "冒険者ランクが4に到達する"
},
{
"description": "プレイヤーRankが150に到達",
"description_en": "Player Rank reaches 150",
"description_en_src": "ml",
"id": 60249,
"priority": 9999926,
"reward_id": 304001,
"reward_quantity": 20,
"reward_type": 4,
"step": 3,
"summary": "プレイヤーRankが<br>150に到達"
},
{
"description": "道場で、遠征即時帰還を合計500回実行(ホーム>道場で遠征可能)",
"description_en": "Execute a total of 500 expedition immediate returns at the dojo (home > expeditions are possible at the dojo)",
"description_en_src": "ml",
"id": 60250,
"priority": 9999925,
"reward_id": 830001,
"reward_quantity": 5000,
"reward_type": 11,
"step": 3,
"summary": "遠征即時帰還を<br>500回実行<br>(道場で実行)"
},
{
"description": "錬成を2回実行する(ホーム>鍛冶屋で錬成可能)",
"description_en": "Perform refining twice (Home > Refining is possible at the blacksmith shop)",
"description_en_src": "ml",
"id": 60251,
"priority": 9999924,
"reward_id": 860015,
"reward_quantity": 5000,
"reward_type": 7,
"step": 3,
"summary": "錬成を2回実行<br>(鍛冶屋で錬成)"
},
{
"description": "フリークエストの「宝箱を開ける」を100回実行する",
"description_en": "Perform the free quest “Open the Treasure Chest” 100 times",
"description_en_src": "ml",
"id": 60252,
"priority": 9999923,
"reward_id": 2000110,
"reward_quantity": 1,
"reward_type": 21,
"step": 3,
"summary": "「宝箱を開ける」を<br>100回実行<br>(フリークエストで実行)"
},
{
"description": "フリークエストにてステージLvを合計100上げる",
"description_en": "Raise your level level by a total of 100 in free quests",
"description_en_src": "ml",
"id": 60253,
"priority": 9999922,
"reward_id": 3000110,
"reward_quantity": 1,
"reward_type": 21,
"step": 3,
"summary": "ステージLvを合計100上げる<br>(フリークエストで挑戦)"
},
{
"description": "道場で、スタイル限界突破を累計50回行う(道場>スタイル限界突破で実行可能)",
"description_en": "Break through the style limit a total of 50 times at the dojo (dojo > style limit breakthrough can be executed)",
"description_en_src": "ml",
"id": 60254,
"priority": 9999921,
"reward_id": 100003,
"reward_quantity": 7000000,
"reward_type": 1,
"step": 3,
"summary": "スタイル限界突破を<br>累計50回実行<br>(道場で強化)"
},
{
"description": "いずれかのクエストで敵を累計2500体討伐する",
"description_en": "Defeat a total of 2500 enemies in any quest",
"description_en_src": "ml",
"id": 60255,
"priority": 9999920,
"reward_id": 305001,
"reward_quantity": 15,
"reward_type": 4,
"step": 3,
"summary": "敵を累計<br>2500体討伐"
},
{
"description": "クエストを500回クリアする",
"description_en": "Complete 500 quests",
"description_en_src": "ml",
"id": 60256,
"priority": 9999919,
"reward_id": 1100868,
"reward_quantity": 15000,
"reward_type": 7,
"step": 3,
"summary": "クエストを<br>500回クリア"
}
]