-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhash_drop.json
More file actions
10421 lines (10421 loc) · 282 KB
/
hash_drop.json
File metadata and controls
10421 lines (10421 loc) · 282 KB
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": 5,
"type": "Quest Reward",
"background": "questClearQPReward",
"phash": "f61389b4292f4806",
"name": "クエストクリア報酬QP",
"name_eng": "Quest Clear Reward QP",
"shortname": "報酬QP",
"dropPriority": 9018
},
{
"id": 9400410,
"type": "Craft Essence",
"rarity": 5,
"name": "不夜の薔薇",
"name_eng": "Nightless Rose",
"phash": "0b0abe94defcf56e",
"phash_narrow": "092a1c07fab5fc7a",
"dropPriority": 9005
},
{
"id": 9400450,
"type": "Craft Essence",
"rarity": 5,
"name": "ムーンライト・フェスト",
"name_eng": "Moonlight Fest",
"phash": "d77118b930b8ffef",
"phash_narrow": "d750880330707ff1",
"dropPriority": 9005
},
{
"id": 9400520,
"type": "Craft Essence",
"rarity": 5,
"name": "ハロウィン・プリンセス",
"name_eng": "Halloween Princess",
"phash": "e9b80e24de74f4f4",
"phash_narrow": "e9f8248fcfe3f87c",
"dropPriority": 9005
},
{
"id": 9400610,
"type": "Craft Essence",
"rarity": 5,
"name": "ぐだお",
"name_eng": "GUDA-O",
"phash": "dc0d0390621d9420",
"phash_narrow": "9c2b11e2638440a6",
"dropPriority": 9005
},
{
"id": 9400690,
"type": "Craft Essence",
"rarity": 5,
"name": "ホーリーナイト・サイン",
"name_eng": "Holy Night Sign",
"phash": "a9e8c04e4eca7672",
"phash_narrow": "a8a8645ec84e12ae",
"dropPriority": 9005
},
{
"id": 9400810,
"type": "Craft Essence",
"rarity": 5,
"name": "ピュアリー・ブルーム",
"name_eng": "Purely Bloom",
"phash": "f41b3a25f09246e6",
"phash_narrow": "d41b2df4b9265c50",
"dropPriority": 9005
},
{
"id": 9400820,
"type": "Craft Essence",
"rarity": 5,
"name": "アルトリアの星",
"name_eng": "Star of Altria",
"phash": "adb2d1ba32533c6d",
"phash_narrow": "adf0d9ac93b252b3",
"dropPriority": 9005
},
{
"id": 9401100,
"type": "Craft Essence",
"rarity": 5,
"name": "メルティ・スイートハート",
"name_eng": "Melty Sweetheart",
"phash": "0ee3124c79748d4c",
"phash_narrow": "8fe316ca32715885",
"dropPriority": 9005
},
{
"id": 9401110,
"type": "Craft Essence",
"rarity": 5,
"name": "首切りバニー2016",
"name_eng": "Decapitating Bunny 2018",
"phash": "7c3c436191c1b54c",
"phash_narrow": "3c1e470d9123cc33",
"dropPriority": 9005
},
{
"id": 9401140,
"type": "Craft Essence",
"rarity": 5,
"name": "三重結界",
"name_eng": "Threefold Barrier",
"phash": "f89d3809a7726927",
"phash_narrow": "d8b4582592e00f2e",
"dropPriority": 9005
},
{
"id": 9401350,
"type": "Craft Essence",
"rarity": 5,
"name": "カルデアの顕学",
"name_eng": "The Scholars of Chaldea",
"phash": "38232f0599f7407c",
"phash_narrow": "3833078db7c349e9",
"dropPriority": 9005
},
{
"id": 9401360,
"type": "Craft Essence",
"rarity": 5,
"name": "カルデアを導く乙女",
"name_eng": "Maiden Leading Chaldea",
"phash": "935accb69366aff2",
"phash_narrow": "135bac9164cef3f6",
"dropPriority": 9005
},
{
"id": 9401370,
"type": "Craft Essence",
"rarity": 5,
"name": "慈悲無き者",
"name_eng": "The Merciless One",
"phash": "a623811fecf1298c",
"phash_narrow": "a621030ef32d8dbb",
"dropPriority": 9005
},
{
"id": 9401450,
"type": "Craft Essence",
"rarity": 5,
"name": "至るべき場所",
"name_eng": "His Rightful Place",
"phash": "ccf9c0429e2f4a96",
"phash_narrow": "ccb941d22d7b1c3e",
"dropPriority": 9005
},
{
"id": 9401460,
"type": "Craft Essence",
"rarity": 5,
"name": "遮那王流離譚",
"name_eng": "The Wandering Tales of Shana-oh",
"phash": "0a4771f9938e8d04",
"phash_narrow": "0a477979b38b4400",
"dropPriority": 9005
},
{
"id": 9401470,
"type": "Craft Essence",
"rarity": 5,
"name": "ゴールデン捕鯉魚図",
"name_eng": "Golden Captures the Carp",
"phash": "cbde0539a22c7aba",
"phash_narrow": "ca8e15f6246dac7a",
"dropPriority": 9005
},
{
"id": 9401530,
"type": "Craft Essence",
"rarity": 5,
"name": "風雲仙姫",
"name_eng": "Divine Princess of the Storm",
"phash": "56d998b64068cd76",
"phash_narrow": "46d99e166a89db61",
"dropPriority": 9005
},
{
"id": 9401540,
"type": "Craft Essence",
"rarity": 5,
"name": "九首牛魔羅王",
"name_eng": "Ox-Demon King",
"phash": "19d59587f19681ba",
"phash_narrow": "5959873934c373a6",
"dropPriority": 9005
},
{
"id": 9401640,
"type": "Craft Essence",
"rarity": 5,
"name": "ゴールデン相撲~岩場所~",
"name_eng": "Golden Sumo: Boulder Tournament",
"phash": "f362319f4b6bcb8b",
"phash_narrow": "f7623496765232bf",
"dropPriority": 9005
},
{
"id": 9401670,
"type": "Craft Essence",
"rarity": 5,
"name": "月の湯治",
"name_eng": "Hot Spring Under the Moon",
"phash": "a57c1a0f75926eb0",
"phash_narrow": "a4d80a65904fb796",
"dropPriority": 9005
},
{
"id": 9401780,
"type": "Craft Essence",
"rarity": 5,
"name": "サマータイム・ミストレス",
"name_eng": "Summertime Mistress",
"phash": "2f1aeee6c814d6ec",
"phash_narrow": "1e18e6ca0d06efb9",
"dropPriority": 9005
},
{
"id": 9401820,
"type": "Craft Essence",
"rarity": 5,
"name": "カルデア・ライフセーバーズ",
"name_eng": "Chaldea Lifesavers",
"phash": "e160f2f7e25efe76",
"phash_narrow": "e120bbe1cbdd75ff",
"dropPriority": 9005
},
{
"id": 9401960,
"type": "Craft Essence",
"rarity": 5,
"name": "ジョイント・リサイタル",
"name_eng": "Joint Recital",
"phash": "e38032f6b57b1db2",
"phash_narrow": "e7824eb4f39df354",
"dropPriority": 9005
},
{
"id": 9402010,
"type": "Craft Essence",
"rarity": 5,
"name": "勇者エリちゃんの冒険",
"name_eng": "Hero Elly's Adventure",
"phash": "9af7e1021f5b5980",
"phash_narrow": "3af7e0a71f592214",
"dropPriority": 9005
},
{
"id": 9402060,
"type": "Craft Essence",
"rarity": 5,
"name": "スイート・クリスタル",
"name_eng": "Sweet Crystal",
"phash": "f97ec69cf6e76cde",
"phash_narrow": "b976099ce77ccefc",
"dropPriority": 9005
},
{
"id": 9402090,
"type": "Craft Essence",
"rarity": 5,
"name": "聖夜の晩餐",
"name_eng": "Holy Night Supper",
"phash": "6b4ab4e3d9a61996",
"phash_narrow": "4b5ee4db6659c631",
"dropPriority": 9005
},
{
"id": 9402260,
"type": "Craft Essence",
"rarity": 5,
"name": "フォンダン・オ・ショコラ",
"name_eng": "Fondant au Chocolat",
"phash": "8e3473c38607c078",
"phash_narrow": "8c3c5bf80fa4f907",
"dropPriority": 9005
},
{
"id": 9402380,
"type": "Craft Essence",
"rarity": 5,
"name": "日輪の城",
"name_eng": "Fortress of the Sun",
"phash": "157101cdc9eeebf3",
"phash_narrow": "353105dd8ceaf3a5",
"dropPriority": 9005
},
{
"id": 9402390,
"type": "Craft Essence",
"rarity": 5,
"name": "壬生狼",
"name_eng": "Wolves of Mibu",
"phash": "e0261e369f076122",
"phash_narrow": "e00632de9e53cd45",
"dropPriority": 9005
},
{
"id": 9402430,
"type": "Craft Essence",
"rarity": 5,
"name": "いつかの夏",
"name_eng": "One Summer",
"phash": "42299b518d2529b4",
"phash_narrow": "42ab53914d498515",
"dropPriority": 9005
},
{
"id": 9402570,
"type": "Craft Essence",
"rarity": 5,
"name": "シーサイド・ラグジュアリー",
"name_eng": "Seaside Luxury",
"phash": "1787287a9cf8d1fe",
"phash_narrow": "47876b361c1b3ee9",
"dropPriority": 9005
},
{
"id": 9402610,
"type": "Craft Essence",
"rarity": 5,
"name": "ダイブ・トゥ・ブルー",
"name_eng": "Dive to Blue",
"phash": "2b97d8e23dd97453",
"phash_narrow": "231ff022c9b4c9f9",
"dropPriority": 9005
},
{
"id": 9402650,
"type": "Craft Essence",
"rarity": 5,
"name": "二神三脚",
"name_eng": "Divine Three-Legged Race",
"shortname": "二神",
"phash": "e7e214f4ed459ffc",
"phash_narrow": "ea3214bc49037859",
"dropPriority": 9005
},
{
"id": 9402660,
"type": "Craft Essence",
"rarity": 5,
"name": "チア・フォー・マスター",
"name_eng": "Cheer for Master",
"shortname": "チア",
"phash": "9963709e944be3b1",
"phash_narrow": "99635c9c4dc6e859",
"dropPriority": 9005
},
{
"id": 9402750,
"type": "Craft Essence",
"rarity": 5,
"name": "エアリアル・ドライブ",
"name_eng": "Aerial Drive",
"phash": "bc86d368aad144e4",
"phash_narrow": "bc96452e9b5bc400",
"dropPriority": 9005
},
{
"id": 9402820,
"type": "Craft Essence",
"rarity": 5,
"name": "メリー・シープ",
"name_eng": "Merry Sheep",
"phash": "690ae169db925e73",
"phash_narrow": "69026d79b0bffbe6",
"dropPriority": 9005
},
{
"id": 9402900,
"type": "Craft Essence",
"rarity": 5,
"name": "スイート・デイズ",
"name_eng": "Sweet Days",
"shortname": "礼装",
"phash": "0382eee6d7fdf9fe",
"phash_narrow": "01a2eec7f7f9f8de",
"dropPriority": 9005
},
{
"id": 9403170,
"type": "Craft Essence",
"rarity": 5,
"name": "トゥリファスにて",
"name_eng": "At Trifas",
"phash": "c0199fe61b78a64e",
"phash_narrow": "c119cdd379b39f27",
"dropPriority": 9005
},
{
"id": 9403180,
"type": "Craft Essence",
"rarity": 5,
"name": "城塞の午後",
"name_eng": "An Afternoon at the Fortress",
"phash": "0a1dd97266339140",
"phash_narrow": "0a1df14c2d904d32",
"dropPriority": 9005
},
{
"id": 9403220,
"type": "Craft Essence",
"rarity": 5,
"name": "白い服の水兵さん",
"name_eng": "The Sailor in White",
"phash": "923824193d8b9d2d",
"phash_narrow": "d3e6707843bb3351",
"dropPriority": 9005
},
{
"id": 9403340,
"type": "Craft Essence",
"rarity": 5,
"name": "ペインティング・サマー",
"name_eng": "Painting Summer",
"phash": "7776c4992c26ff73",
"phash_narrow": "73d6d09804ef1675",
"dropPriority": 9005
},
{
"id": 9403350,
"type": "Craft Essence",
"rarity": 5,
"name": "レディ・フォクシー",
"name_eng": "Foxy Lady",
"phash": "9dfac2f7bfb442ce",
"phash_narrow": "9deac24fb1b0ce56",
"dropPriority": 9005
},
{
"id": 9403360,
"type": "Craft Essence",
"rarity": 5,
"name": "ウォーター・シャイン",
"name_eng": "Water Shine",
"phash": "777c930f46c3dc4d",
"phash_narrow": "76f0bb2ea2d24f82",
"dropPriority": 9005
},
{
"id": 9403440,
"type": "Craft Essence",
"rarity": 5,
"name": "リターン・マッチ",
"name_eng": "Grudge Match",
"phash": "88bb085eb44bd206",
"phash_narrow": "8a3b58b619d0a64d",
"dropPriority": 9005
},
{
"id": 9403450,
"type": "Craft Essence",
"rarity": 5,
"name": "C・K・T",
"name_eng": "C.K.T.",
"phash": "6cc98862f1626336",
"phash_narrow": "7d8d88b8d5cb8a83",
"dropPriority": 9005
},
{
"id": 9403490,
"type": "Craft Essence",
"rarity": 5,
"name": "ロイヤル・アイシング",
"name_eng": "Royal Icing",
"phash": "b6951267a6990864",
"phash_narrow": "3a9c5126939b061e",
"dropPriority": 9005
},
{
"id": 9403500,
"type": "Craft Essence",
"rarity": 5,
"name": "スリー・アングラー",
"name_eng": "Three Anglers",
"phash": "fd872466f861796b",
"phash_narrow": "dd998686b4a43677",
"dropPriority": 9005
},
{
"id": 9403510,
"type": "Craft Essence",
"rarity": 5,
"name": "氷結闘熊",
"name_eng": "Frost Fighting Bear",
"phash": "d1dced638e32dd2e",
"phash_narrow": "d1dcf5c6b3550ee3",
"dropPriority": 9005
},
{
"id": 9403600,
"type": "Craft Essence",
"rarity": 5,
"name": "聖女の教示",
"name_eng": "Holy Maiden's Teachings",
"shortname": "礼装",
"phash": "2a067dcd4909b27b",
"phash_narrow": "2a16f7ed0c8557f6",
"dropPriority": 9005
},
{
"id": 9403640,
"type": "Craft Essence",
"rarity": 5,
"name": "銀雪の女神たち",
"name_eng": "Goddesses of the Glittering Snow",
"phash": "32f6d67adf51ccae",
"phash_narrow": "28a6646a53d0d774",
"dropPriority": 9005
},
{
"id": 9403680,
"type": "Craft Essence",
"rarity": 5,
"name": "ビューティフル・ドリーマー",
"name_eng": "Beautiful Dreamer",
"shortname": "礼装",
"phash": "ba376d42d90a0152",
"phash_narrow": "bab76dd12c036409",
"dropPriority": 9005
},
{
"id": 9403820,
"type": "Craft Essence",
"rarity": 5,
"name": "錦上添花",
"name_eng": "Crowning Beauty, Greater Glory",
"shortname": "礼装",
"phash": "07f01e06310ea172",
"phash_narrow": "a6f80e731fa69993",
"dropPriority": 9005
},
{
"id": 9403860,
"type": "Craft Essence",
"rarity": 5,
"name": "次期当主会議",
"name_eng": "Meeting of the Heirs",
"shortname": "礼装",
"phash": "488757a5b5780f12",
"phash_narrow": "4847c7a5f1a952ce",
"dropPriority": 9005
},
{
"id": 9403950,
"type": "Craft Essence",
"rarity": 5,
"name": "腹が減っては戦ができぬ",
"name_eng": "Can't Fight on an Empty Stomach",
"phash": "9ded991269d7ec1c",
"phash_narrow": "85cd9a3153e01c97",
"dropPriority": 9005
},
{
"id": 9404060,
"type": "Craft Essence",
"rarity": 5,
"name": "天鬼姫",
"name_eng": "Demonic Sun-Princess",
"phash": "09e0e89ef69ce7ec",
"phash_narrow": "19e008ffbefdf8f5",
"dropPriority": 9005
},
{
"id": 9404070,
"type": "Craft Essence",
"rarity": 5,
"name": "盛夏の思い出",
"name_eng": "Midsummer Memories",
"phash": "4fc4b57d7dd2e27d",
"phash_narrow": "4f84a57d5483b47a",
"dropPriority": 9005
},
{
"id": 9404120,
"type": "Craft Essence",
"rarity": 5,
"name": "シーニック・ビューティー",
"name_eng": "Scenic Beauty",
"shortname": "礼装",
"phash": "1b79e9ca1953c036",
"phash_narrow": "1a39cdae19c95f03",
"dropPriority": 9005
},
{
"id": 9404160,
"type": "Craft Essence",
"rarity": 5,
"name": "双つ星の歌姫",
"name_eng": "Binary Star Songstresses",
"shortname": "礼装",
"phash": "a1f8acadba8f66cc",
"phash_narrow": "b138e5f82b274945",
"dropPriority": 9005
},
{
"id": 9404170,
"type": "Craft Essence",
"rarity": 5,
"name": "ベスティア・デル・ソル",
"name_eng": "Bestia del Sol",
"shortname": "礼装",
"phash": "d238c76e84633cce",
"phash_narrow": "3299678c237366b0",
"dropPriority": 9005
},
{
"id": 9404220,
"type": "Craft Essence",
"rarity": 5,
"name": "クリスマスの軌跡",
"name_eng": "Traces of Christmases Past",
"shortname": "礼装",
"phash": "8d34a0fcd5c4f7d8",
"phash_narrow": "ad2528fd85fff8f7",
"dropPriority": 9005
},
{
"id": 9404350,
"type": "Craft Essence",
"rarity": 5,
"name": "ニット・ザ・ラブ",
"name_eng": "Knitting Love",
"shortname": "礼装",
"phash": "cfcc6cfafe69a7f2",
"phash_narrow": "c70ce8de5daf76d7",
"dropPriority": 9005
},
{
"id": 9404530,
"type": "Craft Essence",
"rarity": 5,
"name": "見上げた空の星に",
"name_eng": "Looking up at the Starry Sky",
"shortname": "礼装",
"phash": "872899e2f9529d75",
"phash_narrow": "8738ace9dbcc657d",
"dropPriority": 9005
},
{
"id": 9404580,
"type": "Craft Essence",
"rarity": 5,
"name": "ハイド・ハンター",
"name_eng": "Hide Hunter",
"shortname": "礼装",
"phash": "a1fc07ea5a7b3d69",
"phash_narrow": "a1b5a5ce1ab86dfc",
"dropPriority": 9005
},
{
"id": 9404590,
"type": "Craft Essence",
"rarity": 5,
"name": "チェーンソー・オブ・ザ・デッド",
"name_eng": "Chainsaw of the Dead",
"shortname": "礼装",
"phash": "98d04fcdb93b5bfe",
"phash_narrow": "b912c7ed2933de5d",
"dropPriority": 9005
},
{
"id": 9404700,
"type": "Craft Essence",
"rarity": 5,
"name": "掲げるは我が心",
"name_eng": "Our Hearts Raised Up High",
"shortname": "礼装",
"phash": "a90ffcd0d596c9f7",
"phash_narrow": "892f7a659449ddb0",
"dropPriority": 9005
},
{
"id": 9404740,
"type": "Craft Essence",
"rarity": 5,
"name": "姫巫女の寸暇",
"name_eng": "The Queen Priestess's Spare Moment",
"shortname": "礼装",
"phash": "6ccf6a1ec68edd61",
"phash_narrow": "2cef38628edb79c6",
"dropPriority": 9005
},
{
"id": 9404820,
"type": "Craft Essence",
"rarity": 5,
"name": "ライク・ア・バード",
"name_eng": "Like a Bird",
"shortname": "礼装",
"phash": "59e7f57d9670f54a",
"phash_narrow": "59a37d8f13b526d4",
"dropPriority": 9005
},
{
"id": 9404860,
"type": "Craft Essence",
"rarity": 5,
"name": "チェリー・アイシクル",
"name_eng": "Cherry Icicle",
"shortname": "礼装",
"phash": "84a5c97393231912",
"phash_narrow": "04ad4c50e1639321",
"dropPriority": 9005
},
{
"id": 9404940,
"type": "Craft Essence",
"rarity": 5,
"name": "愛し子を縫う",
"name_eng": "Sewing a Beloved Doll",
"shortname": "礼装",
"phash": "948dc2246b832c7a",
"phash_narrow": "94c9c464838c2e63",
"dropPriority": 9005
},
{
"id": 9404980,
"type": "Craft Essence",
"rarity": 5,
"name": "ホワイト・ガーデン",
"name_eng": "White Garden",
"shortname": "礼装",
"phash": "1d3dec8d33aab455",
"phash_narrow": "1e75cc95ba8a8d15",
"dropPriority": 9005
},
{
"id": 9405160,
"type": "Craft Essence",
"rarity": 5,
"name": "茜の空に咲く",
"name_eng": "Blooming in the Crimson Sky",
"shortname": "礼装",
"phash": "88af833a2f431ea4",
"phash_narrow": "988f933c415e7630",
"dropPriority": 9005
},
{
"id": 9405300,
"type": "Craft Essence",
"rarity": 5,
"name": "オーシャン・フライヤー",
"name_eng": "Ocean Flier",
"shortname": "特攻礼装",
"phash": "82631d50319a58b9",
"phash_narrow": "c2a75c71015431f1",
"dropPriority": 9005
},
{
"id": 9405310,
"type": "Craft Essence",
"rarity": 5,
"name": "シンク・ディーパー",
"name_eng": "Sink Deeper",
"shortname": "ボーナス礼装",
"phash": "876061acd9cd95bb",
"phash_narrow": "8760663a6ddd4dca",
"dropPriority": 9005
},
{
"id": 9405540,
"type": "Craft Essence",
"rarity": 5,
"name": "翡翠の髪状",
"name_eng": "Opulent Jade Mane",
"shortname": "髪状",
"phash": "81d465adb0f1f907",
"phash_narrow": "9154ef8cf3fdc7bf",
"dropPriority": 9005
},
{
"id": 9405550,
"type": "Craft Essence",
"rarity": 5,
"name": "小人の仕立て屋さん",
"name_eng": "Little Tailors",
"shortname": "仕立て屋",
"phash": "233249f4cc4fb87d",
"phash_narrow": "230373e44fbcdd96",
"dropPriority": 9005
},
{
"id": 9405560,
"type": "Craft Essence",
"rarity": 5,
"name": "ベア・キングス",
"name_eng": "Bare Kings",
"shortname": "キングス",
"phash": "f1123ec2e96c9475",
"phash_narrow": "d11e1e936bc63bda",
"dropPriority": 9005
},
{
"id": 9405600,
"type": "Craft Essence",
"rarity": 5,
"name": "花と舞う妓",
"name_eng": "Dancing Like a Flower",
"shortname": "礼装",
"phash": "043307669907cde0",
"phash_narrow": "0c3146f0175fff03",
"dropPriority": 9005
},
{
"id": 9405630,
"type": "Craft Essence",
"rarity": 5,
"name": "悠久の果てを求めて",
"name_eng": "Seeking the End of Permanence",
"phash": "219aceaed255aca6",
"phash_narrow": "29daacee537ddd97",
"dropPriority": 9005
},
{
"id": 9405670,
"type": "Craft Essence",
"rarity": 5,
"name": "ライク・ア・レディ",
"name_eng": "Like a Lady",
"shortname": "礼装",
"phash": "613dc00fb0023df2",
"phash_narrow": "69bc4e7d823d723d",
"dropPriority": 9005
},
{
"id": 9405680,
"type": "Craft Essence",
"rarity": 5,
"name": "冬の聖女",
"name_eng": "Holy Maiden of Winter",
"phash": "3c297895715be418",
"phash_narrow": "3c2b94bddbe66213",
"dropPriority": 9005
},
{
"id": 9405740,
"type": "Craft Essence",
"rarity": 5,
"name": "ファースト・ドローイング",
"name_eng": "First Drawing",
"phash": "c9e0accc5622a976",
"phash_narrow": "d1a3acdc7ad966a9",
"dropPriority": 9005
},
{
"id": 9405800,
"type": "Craft Essence",
"rarity": 5,
"name": "お疲れ様です!",
"name_eng": "Thank You For Your Hard Work!",
"shortname": "礼装",
"phash": "b6e56726cabb4530",
"phash_narrow": "96e525c69b4d0125",
"dropPriority": 9005
},
{
"id": 9405930,
"type": "Craft Essence",
"rarity": 5,
"name": "チェック・レディ",
"name_eng": "Check, Ready",
"shortname": "特攻礼装",
"phash": "9c5353264c4611b3",
"phash_narrow": "9c5932ea4c02d360",
"dropPriority": 9005
},
{
"id": 9405940,
"type": "Craft Essence",
"rarity": 5,
"name": "コスモカルデア高等学園",
"name_eng": "Cosmo Chaldea Academy",
"shortname": "泥礼装",
"phash": "f1b0668d94c0f8ee",
"phash_narrow": "f1706f3f9651c4b3",
"dropPriority": 9005
},
{
"id": 9406000,
"type": "Craft Essence",
"rarity": 5,
"name": "スタァの休日",
"name_eng": "Star's Day Off",
"shortname": "礼装",
"phash": "ccc7cc23fb2c0964",
"phash_narrow": "c4c704e37c03a42b",
"dropPriority": 9005
},
{
"id": 9406010,
"type": "Craft Essence",
"rarity": 5,
"name": "狼のはなし",
"name_eng": "Story of a Wolf",
"phash": "0bf3b416f9b6e81f",
"phash_narrow": "0bf3365ef770b6f6",
"dropPriority": 9005
},
{
"id": 9406050,
"type": "Craft Essence",
"rarity": 5,
"name": "クランクイン",
"name_eng": "First Day of Filming",
"shortname": "泥礼装",
"phash": "d1c315939b0a1db6",
"phash_narrow": "c9e155d3838b863d",
"dropPriority": 9005
},
{
"id": 9406140,
"type": "Craft Essence",
"rarity": 5,
"name": "五大元素使い",
"name_eng": "Average One",
"phash": "d91e87e71d43e94e",
"phash_narrow": "d93ae6ae13e348d7",
"dropPriority": 9005
},
{
"id": 9406200,
"type": "Craft Essence",
"rarity": 5,
"name": "碧空に立つ",
"name_eng": "Standing beneath the Azure Sky",
"phash": "cf68c404299ad292",
"phash_narrow": "2e69c46c694c0cb1",
"dropPriority": 9005
},
{
"id": 9406240,
"type": "Craft Essence",
"rarity": 5,
"name": "ハートブレイカー",
"name_eng": "Heartbreaker",
"shortname": "礼装",
"phash": "8abc91032cdb67ed",
"phash_narrow": "8fbcd3241877852d",
"dropPriority": 9005
},
{
"id": 9406350,
"type": "Craft Essence",
"rarity": 5,
"name": "フィスト・オブ・ヘイル",
"name_eng": "Fist of Hail",
"shortname": "泥礼装",
"phash": "1acfac36c930c190",
"phash_narrow": "1acf2e863a441090",
"dropPriority": 9005
},
{
"id": 9406360,
"type": "Craft Essence",
"rarity": 5,
"name": "アイス・ウォーリアー",
"name_eng": "Ice Warrior",
"shortname": "特攻礼装",
"phash": "716c6efdfca044ae",
"phash_narrow": "304a6ffbf9104c6c",
"dropPriority": 9005
},
{
"id": 9406390,
"type": "Craft Essence",
"rarity": 5,
"name": "A’",
"name_eng": "A'",
"phash": "06710d659d024b8c",
"phash_narrow": "463944ad374a0902",
"dropPriority": 9005
},
{
"id": 9406440,
"type": "Craft Essence",
"rarity": 5,
"name": "黄泉より出づる讐い",
"name_eng": "Vengeance from the Underworld",
"phash": "99734a6985fd70cc",
"phash_narrow": "b1d36a0b8b76c826",
"dropPriority": 9005
},
{
"id": 9406470,
"type": "Craft Essence",
"rarity": 5,
"name": "旅をもてなす",
"name_eng": "Hospitality for the Journey",
"shortname": "泥礼装",
"phash": "27968373d32ff94f",
"phash_narrow": "679ed3d203b60be2",
"dropPriority": 9005
},
{