-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgadget.json
More file actions
1318 lines (1318 loc) · 42.9 KB
/
gadget.json
File metadata and controls
1318 lines (1318 loc) · 42.9 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
{
"type": "gadget",
"version": "3.6",
"update_time": "2023-04-11T01:49:31.6818748+00:00",
"list": [
{
"item_id": "220001",
"text_hash": "3352333292",
"chs": "风神瞳共鸣石",
"cht": "風神瞳共鳴石",
"de": "Anemoculus-Resonanzstein",
"en": "Anemoculus Resonance Stone",
"es": "Roca de resonancia de anemóculus",
"fr": "Pierre de résonance Anémoculus",
"id": "Anemoculus Resonance Stone",
"it": "Pietra di risonanza per Anemoculi",
"jp": "風神の瞳の共鳴石",
"kr": "바람 신의 눈동자 공명석",
"pt": "Pedra de Ressonância de Anemoculus",
"ru": "Камень эха анемокула",
"th": "Anemoculus Resonance Stone",
"tr": "Rüzgar Özü Rezonans Taşı",
"vi": "Đá Cộng Hưởng Phong Thần Đồng"
},
{
"item_id": "220002",
"text_hash": "1817146956",
"chs": "岩神瞳共鸣石",
"cht": "岩神瞳共鳴石",
"de": "Geoculus-Resonanzstein",
"en": "Geoculus Resonance Stone",
"es": "Roca de resonancia de geóculus",
"fr": "Pierre de résonance Géoculus",
"id": "Geoculus Resonance Stone",
"it": "Pietra di risonanza per Geoculi",
"jp": "岩神の瞳の共鳴石",
"kr": "바위 신의 눈동자 공명석",
"pt": "Pedra de Ressonância de Geoculus",
"ru": "Камень эха геокула",
"th": "Geoculus Resonance Stone",
"tr": "Toprak Özü Rezonans Taşı",
"vi": "Đá Cộng Hưởng Nham Thần Đồng"
},
{
"item_id": "220003",
"text_hash": "744196580",
"chs": "岩之寻宝罗盘",
"cht": "岩之尋寶羅盤",
"de": "Geo-Schatzkompass",
"en": "Geo Treasure Compass",
"es": "Brújula buscatesoros Geo",
"fr": "Détecteur de trésors Géo",
"id": "Geo Treasure Compass",
"it": "Bussola di Geo",
"jp": "岩のトレジャーコンパス",
"kr": "바위의 보물찾기 나침반",
"pt": "Bússola de Tesouros Geo",
"ru": "Гео компас сокровищ",
"th": "Geo Treasure Compass",
"tr": "Toprak Hazinesi Pusulası",
"vi": "La Bàn Tìm Báu Vật - Nham"
},
{
"item_id": "220004",
"text_hash": "1984123876",
"chs": "捕风瓶",
"cht": "捕風瓶",
"de": "Windfängerflasche",
"en": "Wind Catcher",
"es": "Botella atrapaviento",
"fr": "Fiole attrape-vent",
"id": "Wind Catcher",
"it": "Acchiappaventi",
"jp": "風捕りの瓶",
"kr": "바람 잡는 병",
"pt": "Garrafa do Vento",
"ru": "Бутыль ловца ветра",
"th": "Wind Catcher",
"tr": "Rüzgar Kapanı",
"vi": "Bình Bắt Gió"
},
{
"item_id": "220005",
"text_hash": "3435780004",
"chs": "口袋锚点",
"cht": "口袋錨點",
"de": "Tragbarer Teleportationspunkt",
"en": "Portable Waypoint",
"es": "Teletransportador portátil",
"fr": "Téléporteur de poche",
"id": "Portable Waypoint",
"it": "Portale mobile",
"jp": "ポケットワープポイント",
"kr": "포켓 워프 포인트",
"pt": "Teleporte Portátil",
"ru": "Карманный телепорт",
"th": "Portable Waypoint",
"tr": "Taşınabilir Portal",
"vi": "Điểm Dịch Chuyển Bỏ Túi"
},
{
"item_id": "220006",
"text_hash": "2776745828",
"chs": "「寻仙的美食家」",
"cht": "「尋仙的美食家」",
"de": "Adeptensucher-Gourmet",
"en": "Adepti Seeker's Stove",
"es": "Olla del gourmet Adeptus",
"fr": "Chaudron d'Adepte",
"id": "Adeptus-Seeking Gourmet",
"it": "Calderone dell'Adeptus",
"jp": "「仙人探しの美食家」",
"kr": "선인 찾는 미식가",
"pt": "Fogão Procurador de Adepti",
"ru": "Печь искателя Адептов",
"th": "Adepti Seeker's Stove",
"tr": "Adeptus Ocağı",
"vi": "Nhà Ẩm Thực Tìm Tiên"
},
{
"item_id": "220008",
"text_hash": "3831779148",
"chs": "叁零式·便携营养袋",
"cht": "參零式·隨身營養袋",
"de": "Praktischer Nahrungsbeutel Nr. 30",
"en": "NRE (Menu 30)",
"es": "Bolsita nutritiva (Versión n.º 30)",
"fr": "Poche nutritive V30",
"id": "NRE (Menu 30)",
"it": "Sacca di nutrienti (ver. 30)",
"jp": "三〇式·携帯式栄養袋",
"kr": "삼공식·영양키트",
"pt": "Bolsa Nutritiva (V. 30)",
"ru": "Сухпаёк (Меню № 30)",
"th": "NRE (Menu 30)",
"tr": "Beslenme Çantası (Menü 30)",
"vi": "Túi Dinh Dưỡng Bỏ Túi - Mẫu 30"
},
{
"item_id": "220009",
"text_hash": "2735452964",
"chs": "风之寻宝罗盘",
"cht": "風之尋寶羅盤",
"de": "Anemo-Schatzkompass",
"en": "Anemo Treasure Compass",
"es": "Brújula buscatesoros Anemo",
"fr": "Détecteur de trésors Anémo",
"id": "Anemo Treasure Compass",
"it": "Bussola di Anemo",
"jp": "風のトレジャーコンパス",
"kr": "바람의 보물찾기 나침반",
"pt": "Bússola de Tesouros Anemo",
"ru": "Анемо компас сокровищ",
"th": "Anemo Treasure Compass",
"tr": "Rüzgar Hazinesi Pusulası",
"vi": "La Bàn Tìm Báu Vật - Phong"
},
{
"item_id": "220013",
"text_hash": "3255871172",
"chs": "「寻宝仙灵」",
"cht": "「尋寶仙靈」",
"de": "„Schatz suchende Seelie“",
"en": "Treasure-Seeking Seelie",
"es": "Seelie cazatesoros",
"fr": "Fée chercheuse",
"id": "Treasure-Seeking Seelie",
"it": "Seelie cercatesori",
"jp": "「宝探し仙霊」",
"kr": "「보물 찾는 선령」",
"pt": "\"Seelie dos Tesouros\"",
"ru": "Поисковая фея",
"th": "Treasure-Seeking Seelie",
"tr": "Dedektör Peri",
"vi": "Tiên Linh Tầm Bảo"
},
{
"item_id": "220014",
"text_hash": "1508920732",
"chs": "迷你仙灵·露草",
"cht": "迷你仙靈·露草",
"de": "Miniseelie – Taukraut",
"en": "Mini Seelie: Dayflower",
"es": "Miniseelie rocío",
"fr": "Mini-fée comméline",
"id": "Mini Seelie: Dayflower",
"it": "Mini Seelie (commelina)",
"jp": "小さな仙霊·露草",
"kr": "작은 선령·노초",
"pt": "Mini Seelie - Flor Azul",
"ru": "Малая фея Синеглазка",
"th": "Mini Seelie - Dayflower",
"tr": "Minik Peri: Çiy Tanesi",
"vi": "Tiên Linh Nhỏ Bé - Cỏ Sương"
},
{
"item_id": "220015",
"text_hash": "1830648716",
"chs": "迷你仙灵·薄红",
"cht": "迷你仙靈·薄紅",
"de": "Miniseelie – Rote Wangen",
"en": "Mini Seelie: Rosé",
"es": "Miniseelie rubor",
"fr": "Mini-fée rosée",
"id": "Mini Seelie: Rosé",
"it": "Mini Seelie (rosa)",
"jp": "小さな仙霊·薄紅",
"kr": "작은 선령·박홍",
"pt": "Mini Seelie - Rosa",
"ru": "Малая фея Роза",
"th": "Mini Seelie - Rosé",
"tr": "Minik Peri: Gülpembe",
"vi": "Tiên Linh Nhỏ Bé - Hồng Nhạt"
},
{
"item_id": "220016",
"text_hash": "1587322020",
"chs": "迷你仙灵·郁金",
"cht": "迷你仙靈·鬱金",
"de": "Miniseelie – Kurkuma",
"en": "Mini Seelie: Curcuma",
"es": "Miniseelie cúrcuma",
"fr": "Mini-fée curcuma",
"id": "Mini Seelie: Curcuma",
"it": "Mini Seelie (curcuma)",
"jp": "小さな仙霊·鬱金",
"kr": "작은 선령·울금",
"pt": "Mini Seelie - Cúrcuma",
"ru": "Малая фея Куркума",
"th": "Mini Seelie - Curcuma",
"tr": "Minik Peri: Safran",
"vi": "Tiên Linh Nhỏ Bé - Ánh Vàng"
},
{
"item_id": "220017",
"text_hash": "260508780",
"chs": "放热瓶",
"cht": "放熱瓶",
"de": "Wärmflasche",
"en": "Warming Bottle",
"es": "Vial exotérmico",
"fr": "Fiole exothermique",
"id": "Warming Bottle",
"it": "Fiala esotermica",
"jp": "放熱瓶",
"kr": "발열병",
"pt": "Garrafa Térmica",
"ru": "Тепловая бутыль",
"th": "Warming Bottle",
"tr": "Isıtıcı Şişe",
"vi": "Bình Phát Nhiệt"
},
{
"item_id": "220018",
"text_hash": "1808499580",
"chs": "留影机",
"cht": "留影機",
"de": "Fotoapparat",
"en": "Kamera",
"es": "Daguerrotipo",
"fr": "Daguerréotype",
"id": "Kamera",
"it": "Fotokamera",
"jp": "写真機",
"kr": "사진기",
"pt": "Aparelho Fotográfico",
"ru": "Фотокамера",
"th": "กล่องถ่ายรูป",
"tr": "Kamera",
"vi": "Máy Ảnh"
},
{
"item_id": "220019",
"text_hash": "513782900",
"chs": "奇特的「留影机」",
"cht": "奇特的「留影機」",
"de": "Faszinierender Fotoapparat",
"en": "Kurious Kamera",
"es": "Daguerrotipo extraño",
"fr": "Daguerréotype étrange",
"id": "Kurious Kamera",
"it": "Fotokamera kuriosa",
"jp": "不思議な「写真機」",
"kr": "특이한 「사진기」",
"pt": "Aparelho Fotográfico Peculiar",
"ru": "Особенная «фотокамера»",
"th": "กล่องถ่ายรูปสุดประหลาด",
"tr": "Nadir Kamera",
"vi": "Máy Ảnh Kỳ Lạ"
},
{
"item_id": "220020",
"text_hash": "4181509124",
"chs": "特制的「留影机」",
"cht": "特製的「留影機」",
"de": "Besonderer Fotoapparat",
"en": "Special Kamera",
"es": "Daguerrotipo especial",
"fr": "Daguerréotype spécial",
"id": "Special Kamera",
"it": "Fotokamera speciale",
"jp": "特製の「写真機」",
"kr": "특제 「사진기」",
"pt": "Aparelho Fotográfico Especial",
"ru": "Специальная «фотокамера»",
"th": "กล่องถ่ายรูปสุดพิเศษ",
"tr": "Özel Kamera",
"vi": "Máy Ảnh Đặc Chế"
},
{
"item_id": "220021",
"text_hash": "2102620660",
"chs": "参量质变仪",
"cht": "參數質變儀",
"de": "Parameterwandler",
"en": "Parametric Transformer",
"es": "Transmutador paramétrico",
"fr": "Transformateur paramétrique",
"id": "Parametric Transformer",
"it": "Modificatore parametrico",
"jp": "参量物質変化器",
"kr": "매개 변수 변환기",
"pt": "Transformador Paramétrico",
"ru": "Параметрический преобразователь",
"th": "Parametric Transformer",
"tr": "Parametrik Dönüştürücü",
"vi": "Máy Biến Đổi Tham Số"
},
{
"item_id": "220022",
"text_hash": "294435556",
"chs": "好奇的嫣朵拉",
"cht": "好奇的嫣朵拉",
"de": "Wissbegierige Endora",
"en": "Inquisitive Endora",
"es": "Endora la Curiosa",
"fr": "Endora la curieuse",
"id": "Inquisitive Endora",
"it": "Endora curiosa",
"jp": "好奇心旺盛なエンドラー",
"kr": "호기심 많은 엔도라",
"pt": "Endora Curiosa",
"ru": "Любопытная Эндора",
"th": "Endora ขี้สงสัย",
"tr": "Meraklı Endora",
"vi": "Endora Hiếu Kỳ"
},
{
"item_id": "220023",
"text_hash": "313365772",
"chs": "嫣朵拉",
"cht": "嫣朵拉",
"de": "Endora",
"en": "Endora",
"es": "Endora",
"fr": "Endora",
"id": "Endora",
"it": "Endora",
"jp": "エンドラー",
"kr": "엔도라",
"pt": "Endora",
"ru": "Эндора",
"th": "Endora",
"tr": "Endora",
"vi": "Endora"
},
{
"item_id": "220024",
"text_hash": "597404964",
"chs": "风花节纪念气球",
"cht": "風花節紀念氣球",
"de": "Ballon zum Gedenken des Windblumenfests",
"en": "Windblume Festival Commemorative Balloon",
"es": "Globo conmemorativo del festival",
"fr": "Ballon souvenir de la Fête des alizées",
"id": "Windblume Festival Commemorative Balloon",
"it": "Pallone commemorativo del Festival del Florvento",
"jp": "風花祭記念風船",
"kr": "윈드블룸 축제 기념풍선",
"pt": "Balão de Comemoração do Festival da Brisa Florescente",
"ru": "Праздничный воздушный шар",
"th": "Windblume Festival Commemorative Balloon",
"tr": "Rüzgarçiçeği Festivali Hatıra Balonu",
"vi": "Bong Bóng Kỉ Niệm Lễ Hội Hoa Gió"
},
{
"item_id": "220025",
"text_hash": "3501413420",
"chs": "风物之诗琴",
"cht": "風物之詩琴",
"de": "Landschaftliche Leier",
"en": "Windsong Lyre",
"es": "Lira de la brisa",
"fr": "Lyre de la brise",
"id": "Windsong Lyre",
"it": "Lira del vento",
"jp": "風吹きのライアー",
"kr": "바람의 노래 하프",
"pt": "Lira da Brisa",
"ru": "Лира ветров",
"th": "Windsong Lyre",
"tr": "Meltem Liri",
"vi": "Cung Đàn Của Gió"
},
{
"item_id": "220026",
"text_hash": "200478436",
"chs": "尘歌壶",
"cht": "塵歌壺",
"de": "Kanne der Vergänglichkeit",
"en": "Serenitea Pot",
"es": "Relajatetera",
"fr": "Sérénithéière",
"id": "Serenitea Pot",
"it": "Serenteiera",
"jp": "塵歌壺",
"kr": "속세의 주전자",
"pt": "Bule de Relachá",
"ru": "Чайник безмятежности",
"th": "Serenitea Pot",
"tr": "Dinginçay Çaydanlığı",
"vi": "Ấm Trần Ca"
},
{
"item_id": "220027",
"text_hash": "3296114876",
"chs": "风佑之羽球",
"cht": "風佑之羽球",
"de": "Windsegen-Harpastum",
"en": "Wind-Blessed Harpastum",
"es": "Harpastum de viento",
"fr": "Harpastum de vent",
"id": "Wind-Blessed Harpastum",
"it": "Harpastum del vento",
"jp": "風護のバドルドー",
"kr": "바람의 가호 하르파스툼",
"pt": "Harpastum da Proteção do Vento",
"ru": "Гарпастум ветра",
"th": "Wind-Blessed Harpastum",
"tr": "Rüzgarlı Harpastum",
"vi": "Quả Cầu Của Gió"
},
{
"item_id": "220028",
"text_hash": "101550124",
"chs": "浪船修理工具箱",
"cht": "浪船修理工具箱",
"de": "Wellenreiter-Reparaturwerkzeugkasten",
"en": "Waverider Repair Toolbox",
"es": "Caja de herramientas de reparación del Rompeolas",
"fr": "Boîte à outils de barge",
"id": "Waverider Repair Toolbox",
"it": "Cassetta degli attrezzi per il Cavalcaonde",
"jp": "ウェーブボートの修理箱",
"kr": "파도 배 수리 공구함",
"pt": "Caixa de Ferramentas de Reparo do Quebra-mar",
"ru": "Ремнабор волнохода",
"th": "Waverider Repair Toolbox",
"tr": "Dalgakıran Tamir Kutusu",
"vi": "Rương Dụng Cụ Sửa Thuyền"
},
{
"item_id": "220029",
"text_hash": "2772654172",
"chs": "准准爆弹",
"cht": "準準爆彈",
"de": "Präzisionsbombe",
"en": "Straight Shooter",
"es": "Bomba de precisión",
"fr": "Bombe directe",
"id": "Straight Shooter",
"it": "Bomba precisa",
"jp": "バンバン爆弾",
"kr": "정조준 폭탄",
"pt": "Bomba Precisa",
"ru": "Высокоточная бомба",
"th": "Straight Shooter",
"tr": "Dobra Bomba",
"vi": "Đạn Nổ Chuẩn"
},
{
"item_id": "220030",
"text_hash": "4120857324",
"chs": "飘飘爆弹",
"cht": "飄飄爆彈",
"de": "Splitterbombe",
"en": "Floaty Splody",
"es": "Bomba flotante",
"fr": "Bombe explosive",
"id": "Floaty Splody",
"it": "Bomba esplosiva",
"jp": "ユラユラ爆弾",
"kr": "둥둥 폭탄",
"pt": "Bomba Flutuante",
"ru": "Плавающая бомба",
"th": "Floaty Splody",
"tr": "Pofuduk Bomba",
"vi": "Đạn Nổ Bay Bổng"
},
{
"item_id": "220031",
"text_hash": "1992285196",
"chs": "烫烫爆弹",
"cht": "燙燙爆彈",
"de": "Brandbombe",
"en": "Hot Pod",
"es": "Bomba calcinadora",
"fr": "Bombe brûlante",
"id": "Hot Pod",
"it": "Bomba calcinatrice",
"jp": "アツアツ爆弾",
"kr": "화끈화끈 폭탄",
"pt": "Bomba Queimante",
"ru": "Горячая бомба",
"th": "Hot Pod",
"tr": "Yakıcı Bomba",
"vi": "Đạn Nổ Nóng Rực"
},
{
"item_id": "220032",
"text_hash": "3519592252",
"chs": "雷神瞳共鸣石",
"cht": "雷神瞳共鳴石",
"de": "Elektroculus-Resonanzstein",
"en": "Electroculus Resonance Stone",
"es": "Roca de resonancia de electróculus",
"fr": "Pierre de résonance Électroculus",
"id": "Electroculus Resonance Stone",
"it": "Pietra di risonanza per Electroculi",
"jp": "雷神の瞳の共鳴石",
"kr": "번개 신의 눈동자 공명석",
"pt": "Pedra de Ressonância de Electroculus",
"ru": "Камень эха электрокула",
"th": "Electroculus Resonance Stone",
"tr": "Elektrik Özü Rezonans Taşı",
"vi": "Đá Cộng Hưởng Lôi Thần Đồng"
},
{
"item_id": "220033",
"text_hash": "2361005188",
"chs": "化种匣",
"cht": "化種匣",
"de": "Saatschachtel",
"en": "Seed Dispensary",
"es": "Semillero",
"fr": "Boîte à graines",
"id": "Seed Dispensary",
"it": "Scatola di semi",
"jp": "種の匣",
"kr": "씨앗 함",
"pt": "Caixa de Sementificação",
"ru": "Сундук семян",
"th": "Seed Dispensary",
"tr": "Tohum Kutusu",
"vi": "Hộp Hạt Giống"
},
{
"item_id": "220034",
"text_hash": "3252333372",
"chs": "雷之寻宝罗盘",
"cht": "雷之尋寶羅盤",
"de": "Elektro-Schatzkompass",
"en": "Electro Treasure Compass",
"es": "Brújula buscatesoros Electro",
"fr": "Détecteur de trésors Électro",
"id": "Electro Treasure Compass",
"it": "Bussola di Electro",
"jp": "雷のトレジャーコンパス",
"kr": "번개의 보물찾기 나침반",
"pt": "Bússola de Tesouro Electro",
"ru": "Электро компас сокровищ",
"th": "Electro Treasure Compass",
"tr": "Elektrik Hazinesi Pusulası",
"vi": "La Bàn Tìm Báu Vật - Lôi"
},
{
"item_id": "220035",
"text_hash": "2269275124",
"chs": "红羽团扇",
"cht": "紅羽團扇",
"de": "Roter Federfächer",
"en": "Red Feather Fan",
"es": "Abanico de plumas rojas",
"fr": "Éventail à plumes rouges",
"id": "Red Feather Fan",
"it": "Ventaglio di piume rosse",
"jp": "赤羽団扇",
"kr": "붉은 깃털 부채",
"pt": "Abanador de Penas Vermelhas",
"ru": "Веер из красных перьев",
"th": "Red Feather Fan",
"tr": "Kırmızı Tüylü Yelpaze",
"vi": "Quạt Lông Đỏ"
},
{
"item_id": "220036",
"text_hash": "2579111388",
"chs": "「留念镜」",
"cht": "「留念鏡」",
"de": "Souvenirlinse",
"en": "Memento Lens",
"es": "Lente de los recuerdos",
"fr": "Lentille de réminiscence",
"id": "Memento Lens",
"it": "Lente dei ricordi",
"jp": "「追憶のレンズ」",
"kr": "「기억의 렌즈」",
"pt": "Lente das Lembranças",
"ru": "Линза воспоминаний",
"th": "\"Memento Lens\"",
"tr": "Hatıralar Merceği",
"vi": "Kính Kỷ Vật"
},
{
"item_id": "220037",
"text_hash": "2887371428",
"chs": "「寻宝仙灵」",
"cht": "「尋寶仙靈」",
"de": "„Schatz suchende Seelie“",
"en": "Treasure-Seeking Seelie",
"es": "Seelie cazatesoros",
"fr": "Fée chercheuse",
"id": "Treasure-Seeking Seelie",
"it": "Seelie cercatesori",
"jp": "「宝探し仙霊」",
"kr": "「보물 찾는 선령」",
"pt": "Seelie dos Tesouros",
"ru": "Поисковая фея",
"th": "Treasure-Seeking Seelie",
"tr": "Dedektör Peri",
"vi": "Tiên Linh Tầm Bảo"
},
{
"item_id": "220038",
"text_hash": "77129612",
"chs": "迷你仙灵·紫苑",
"cht": "迷你仙靈·紫苑",
"de": "Miniseelie – Veilchen",
"en": "Mini Seelie: Viola",
"es": "Miniseelie violeta",
"fr": "Mini-fée violette",
"id": "Mini Seelie: Viola",
"it": "Mini Seelie (violetta)",
"jp": "小さな仙霊·紫苑",
"kr": "작은 선령·자원",
"pt": "Mini Seelie: Violeta",
"ru": "Малая фея Астра",
"th": "Mini Seelie - Viola",
"tr": "Minik Peri: Eflatun",
"vi": "Tiên Linh Nhỏ Bé - Tử Uyển"
},
{
"item_id": "220039",
"text_hash": "3623742404",
"chs": "奇特的羽毛",
"cht": "奇特的羽毛",
"de": "Außergewöhnliche Feder",
"en": "Peculiar Pinion",
"es": "Pluma extraña",
"fr": "Plume étrange",
"id": "Bulu yang Aneh",
"it": "Piuma peculiare",
"jp": "変わった羽毛",
"kr": "독특한 깃털",
"pt": "Pena Peculiar",
"ru": "Странное перо",
"th": "ขนนกประหลาด",
"tr": "Tuhaf Tüy",
"vi": "Chiếc Lông Kỳ Lạ"
},
{
"item_id": "220040",
"text_hash": "1262572180",
"chs": "奇特的羽毛",
"cht": "奇特的羽毛",
"de": "Außergewöhnliche Feder",
"en": "Peculiar Pinion",
"es": "Pluma extraña",
"fr": "Plume étrange",
"id": "Bulu yang Aneh",
"it": "Piuma peculiare",
"jp": "変わった羽毛",
"kr": "독특한 깃털",
"pt": "Pena Peculiar",
"ru": "Странное перо",
"th": "ขนนกประหลาด",
"tr": "Tuhaf Tüy",
"vi": "Chiếc Lông Kỳ Lạ"
},
{
"item_id": "220042",
"text_hash": "3439013468",
"chs": "阿叶夏混沌勘探器",
"cht": "阿葉夏混沌勘探器",
"de": "Ayeshas Chaosdetektor",
"en": "Ayesha's Chaos Prospector",
"es": "Buscador del caos de Ayesha",
"fr": "Détecteur du chaos d'Ayesha",
"id": "Ayesha's Chaos Prospector",
"it": "Caosdetector di Ayesha",
"jp": "アイシャ混沌探知機",
"kr": "아에샤의 혼돈 탐지기",
"pt": "Prospector do Caos de Ayesha",
"ru": "Старатель хаоса Айеши",
"th": "Ayesha's Chaos Prospector",
"tr": "Ayesha'nın Kaos Dedektörü",
"vi": "Máy Thăm Dò Hỗn Độn Ayesha"
},
{
"item_id": "220043",
"text_hash": "846127532",
"chs": "「四方八方之网」",
"cht": "「四方八方之網」",
"de": "„Netz der Omniubiquität“",
"en": "Omni-Ubiquity Net",
"es": "Red de la ubicuidad suprema",
"fr": "Omnifilet d'ubiquité",
"id": "Omni-Ubiquity Net",
"it": "Rete dell'ubiquità suprema",
"jp": "「四方八方の網」",
"kr": "「사방팔방의 그물」",
"pt": "Rede Oniubíqua",
"ru": "Сеть всевездесущности",
"th": "Omni-Ubiquity Net",
"tr": "Üstün Ağ Topu",
"vi": "\"Thiên La Địa Võng\""
},
{
"item_id": "220044",
"text_hash": "2290467204",
"chs": "镜花之琴",
"cht": "鏡花之琴",
"de": "Blumenzither",
"en": "Floral Zither",
"es": "Mandolina floral",
"fr": "Cithare florale",
"id": "Floral Zither",
"it": "Cetra floreale",
"jp": "鏡花の琴",
"kr": "거울꽃의 현악기",
"pt": "Cítara Floral",
"ru": "Цветочная цитра",
"th": "Floral Zither",
"tr": "Çiçekli Zither",
"vi": "Đàn Vang Vọng"
},
{
"item_id": "220045",
"text_hash": "447636636",
"chs": "「式小将」",
"cht": "「式小將」",
"de": "„Shiki Koshou“",
"en": "Shiki Koshou",
"es": "Shiki Koshou",
"fr": "Shiki Koshou",
"id": "Shiki Koshou",
"it": "Shiki Koshou",
"jp": "「式小将」",
"kr": "「시키 소장」",
"pt": "Shiki Koshou",
"ru": "Сики Косё",
"th": "\"Shiki Koshou\"",
"tr": "Shiki Koshou",
"vi": "Shiki Koshou"
},
{
"item_id": "220046",
"text_hash": "2388936404",
"chs": "「四方之网」",
"cht": "「四方之網」",
"de": "Netz der Ubiquität",
"en": "Ubiquity Net",
"es": "Red de la ubicuidad",
"fr": "Filet d'ubiquité",
"id": "Ubiquity Net",
"it": "Rete dell'ubiquità",
"jp": "「四方の網」",
"kr": "「사방의 그물」",
"pt": "Rede Ubíqua",
"ru": "Сеть вездесущности",
"th": "Ubiquity Net",
"tr": "Ağ Topu",
"vi": "\"Lưới Bắt Thú\""
},
{
"item_id": "220047",
"text_hash": "3846235020",
"chs": "「烟花筒」",
"cht": "「煙花筒」",
"de": "„Abschussrohr“",
"en": "Launch Tube",
"es": "Tubo pirotécnico",
"fr": "Tube de tir",
"id": "Launch Tube",
"it": "Tubo di lancio",
"jp": "「花火の筒」",
"kr": "「폭죽통」",
"pt": "Barrilzinho de Fogos de Artifício",
"ru": "Пусковая труба",
"th": "\"Launch Tube\"",
"tr": "Ateşleme Borusu",
"vi": "\"Ống Pháo Hoa\""
},
{
"item_id": "220048",
"text_hash": "2384311540",
"chs": "流明石触媒",
"cht": "流明石觸媒",
"de": "Lumenstein-Katalysator",
"en": "Lumenstone Adjuvant",
"es": "Canalizador lumínico",
"fr": "Adjuvant de pierre de lumen",
"id": "Lumenstone Adjuvant",
"it": "Catalizzatore di Pietraluce",
"jp": "流明石の触媒",
"kr": "유명석 촉매",
"pt": "Condutor de Pedra Lúmen",
"ru": "Адъювант светоносного камня",
"th": "ตัวเร่งปฏิกิริยา Lumenstone",
"tr": "Lümentaşı Katalizörü",
"vi": "Chất Xúc Tác Lưu Minh Thạch"
},
{
"item_id": "220049",
"text_hash": "4015398428",
"chs": "睦疏之匣",
"cht": "睦疏之匣",
"de": "Bokuso-Kasten",
"en": "Bokuso Box",
"es": "Caja de armonización",
"fr": "Boîte de Bokuso",
"id": "Bokuso Box",
"it": "Scatola Bokuso",
"jp": "睦疎の箱",
"kr": "보쿠소의 함",
"pt": "Caixa de Bokuso",
"ru": "Шкатулка Бокусо",
"th": "กล่อง Bokuso",
"tr": "Bokuso Kutusu",
"vi": "Hộp Bokuso"
},
{
"item_id": "220051",
"text_hash": "1758574892",
"chs": "荒泷·盛世豪鼓",
"cht": "荒瀧·盛世豪鼓",
"de": "Aratakis große und spektakuläre Trommel",
"en": "Arataki's Great and Glorious Drum",
"es": "Sublime y glorioso tambor de Arataki",
"fr": "Tambourin harmonieux d'Arataki",
"id": "Drum Arataki yang Paling Hebat dan Paling Keren",
"it": "Grande e glorioso tamburo di Arataki",
"jp": "荒瀧·盛世豪鼓",
"kr": "아라타키·천하제일의 북",
"pt": "Tambor Glorioso de Arataki",
"ru": "Грандиозный барабан Аратаки",
"th": "กลองโห่ร้อง Arataki",
"tr": "Arataki'nin Büyük ve Görkemli Davulu",
"vi": "Trống Arataki Đệ Nhất"
},
{
"item_id": "220052",
"text_hash": "1077121756",
"chs": "素材收集器",
"cht": "素材收集器",
"de": "Materialsammelgerät",
"en": "Material Collector",
"es": "Recolectamateriales",
"fr": "Collecteur de matériaux",
"id": "Material Collector",
"it": "Raccoglitore di materiali",
"jp": "素材収集器",
"kr": "재료 수집기",
"pt": "Coletor de Materiais",
"ru": "Коллектор материалов",
"th": "เครื่องรวบรวมวัตถุดิบ",
"tr": "Malzeme Toplayıcı",
"vi": "Máy Thu Thập Nguyên Liệu"
},
{
"item_id": "220053",
"text_hash": "2234248132",
"chs": "「苦舍桓」",
"cht": "「苦舍桓」",
"de": "„Kusava“",
"en": "\"Kusava\"",
"es": "Kusava",
"fr": "Kusava",
"id": "Kusava",
"it": "Kusava",
"jp": "「クサヴァ」",
"kr": "「쿠사바」",
"pt": "Kusava",
"ru": "Кусава",
"th": "Kusava",
"tr": "\"Kusava\"",
"vi": "\"Kusava\""
},
{
"item_id": "220056",
"text_hash": "3687505588",
"chs": "秘典之盒",
"cht": "秘典之盒",
"de": "Kodex-Schatulle",
"en": "Casket of Tomes",
"es": "Caja arcana",
"fr": "Coffret d'arcanes",
"id": "Casket of Tomes",
"it": "Scrigno degli arcani",
"jp": "秘典の箱",
"kr": "비전 상자",
"pt": "Urna de Grimórios",
"ru": "Карточный ларец",
"th": "กล่องศักดิ์สิทธิ์",
"tr": "Sır Kutusu",
"vi": "Hộp Bài Thần Bí"
},
{
"item_id": "220057",
"text_hash": "977791948",
"chs": "草神瞳共鸣石",
"cht": "草神瞳共鳴石",
"de": "Dendroculus-Resonanzstein",
"en": "Dendroculus Resonance Stone",
"es": "Roca de resonancia de dendróculus",
"fr": "Pierre de résonance Dendroculus",
"id": "Dendroculus Resonance Stone",
"it": "Pietra di risonanza per Dendroculi",
"jp": "草神の瞳の共鳴石",
"kr": "풀의 신의 눈동자 공명석",
"pt": "Pedra de Ressonância de Dendroculus",
"ru": "Камень эха дендрокула",
"th": "Dendroculus Resonance Stone",
"tr": "Doğa Özü Rezonans Taşı",
"vi": "Đá Cộng Hưởng Thảo Thần Đồng"
},
{
"item_id": "220058",
"text_hash": "2291719708",
"chs": "草之寻宝罗盘",
"cht": "草之尋寶羅盤",
"de": "Dendro-Schatzkompass",
"en": "Dendro Treasure Compass",
"es": "Brújula buscatesoros Dendro",
"fr": "Détecteur de trésors Dendro",
"id": "Dendro Treasure Compass",
"it": "Bussola di Dendro",
"jp": "草のトレジャーコンパス",
"kr": "풀의 보물찾기 나침반",
"pt": "Bússola de Tesouros Dendro",
"ru": "Дендро компас сокровищ",
"th": "Dendro Treasure Compass",
"tr": "Doğa Hazinesi Pusulası",
"vi": "La Bàn Tìm Báu Vật - Thảo"
},
{
"item_id": "220059",
"text_hash": "4119125268",
"chs": "「王树瑞佑」",
"cht": "「王樹瑞佑」",
"de": "„Segen des Ashvattha“",
"en": "\"The Boon of the Elder Tree\"",
"es": "Bendición de Ashvattha",
"fr": "Faveur de l'arbre aîné",
"id": "\"The Boon of the Elder Tree\"",
"it": "Dono dell'Albero anziano",
"jp": "「王樹の加護」",
"kr": "「나무왕의 가호」",
"pt": "\"Bênção da Árvore Anciã\"",
"ru": "Благословение великого древа",
"th": "\"ผลบุญจากต้นราชัน\"",
"tr": "\"Yaşlı Ağacın Lütfu\"",
"vi": "\"Phù Hộ Của Cây Vua\""
},
{
"item_id": "220061",
"text_hash": "1037162660",
"chs": "「寻宝仙灵」",
"cht": "「尋寶仙靈」",
"de": "„Schatz suchende Seelie“",
"en": "Treasure-Seeking Seelie",
"es": "Seelie cazatesoros",
"fr": "Fée chercheuse",
"id": "Treasure-Seeking Seelie",
"it": "Seelie cercatesori",
"jp": "「宝探し仙霊」",
"kr": "「보물 찾는 선령」",
"pt": "Seelie dos Tesouros",
"ru": "Поисковая фея",
"th": "Treasure-Seeking Seelie",
"tr": "Dedektör Peri",
"vi": "Tiên Linh Tầm Bảo"
},
{
"item_id": "220062",
"text_hash": "3654696684",
"chs": "迷你仙灵·苔绿",
"cht": "迷你仙靈·苔綠",
"de": "Miniseelie – Moos",
"en": "Mini Seelie: Moss",