forked from 9001-Solutions/ffxivclock-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems.json
3750 lines (3750 loc) · 158 KB
/
items.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
{
"items": [
{
"id": "1",
"slot": 3,
"name": "Darksteel Ore",
"nameFr": "Minerai de sombracier",
"nameDe": "Dunkelstahlerz",
"level": "50",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Darksteel Ore5121.png",
"description": "A decent-sized piece of rock containing the metal darksteel.",
"descriptionFr": "Un morceau de minerai contenant du sombracier.",
"descriptionDe": "Ein Erzklumpen mit hohem Dunkelstahlgehalt."
},
{
"id": "2",
"slot": 1,
"name": "Pumice",
"nameFr": "Pierre ponce",
"nameDe": "Bimsstein",
"level": "50***",
"gatheringSkill": "80",
"perception": "420+",
"imageUrl": "Pumice9519.png",
"description": "Volcanic rock riddled with countless tiny holes which make the stone remarkably lighter than it appears. Parchment makers rub the pieces on vellum to prepare the pages for receiving ink.",
"descriptionFr": "Cette roche d'origine volcanique se distingue par ses nombreux trous. Elle est très pratique pour travailler les tissus et les cuirs.",
"descriptionDe": "Ein Stein, der von Myriaden von Löchern durchsät ist. Er wird verwendet, um Oberflächen zu glätten."
},
{
"id": "3",
"slot": 7,
"name": "Antumbral Rock",
"nameFr": "Roche antéombrale",
"nameDe": "Schlagschattenfels",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Antumbral Rock8030.png",
"description": "A rock with an elemental aspect leaning unnaturally towards umbral.",
"descriptionFr": "Une roche dont l'aspect élémentaire penche fortement vers l'ombral.",
"descriptionDe": "Gestein, dessen elementare Beschaffenheit noch stärker zur Dunkelheit tendiert als bei gewöhnlichem Schattenfels."
},
{
"id": "117",
"slot": 8,
"name": "Dark Matter Cluster",
"nameFr": "Agrégat de matière sombre",
"nameDe": "Dunkelmaterie",
"level": "50**",
"gatheringSkill": "70",
"perception": "",
"imageUrl": "Dark Matter Cluster10335.png",
"description": "This substance of unknown origin has the faculty to assimilate with other forms of matter, effectively restoring them to their original condition. Pieces this large are quite rare.",
"descriptionFr": "Un minerai réagissant à l'énergie spirituelle, et qui a des facultés d'assimilation avec d'autres matières.",
"descriptionDe": "Diese Substanz von unbekannter Herkunft hat die Eigenschaft, sich mit anderen Formen von Materie zu vereinen, und diese so in ihren ursprünglichen Zustand zu versetzen. Solch große Stücke sind zie"
},
{
"id": "4",
"slot": 6,
"name": "Ferberite",
"nameFr": "Minerai de ferbérite",
"nameDe": "Ferberit",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Ferberite7588.png",
"description": "A jet-black mineral with alluring luster.",
"descriptionFr": "Un minéral brillant et noir comme le jais.",
"descriptionDe": "Ein tiefschwarzes Mineral, das verführerisch glänzt."
},
{
"id": "5",
"slot": 7,
"name": "Raw Topaz",
"nameFr": "Topaze brute",
"nameDe": "Roh-Topas",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Raw Topaz5149.png",
"description": "An uncut, unpolished stone containing what appears to be topaz.",
"descriptionFr": "Une pierre brute qui semble contenir une topaze.",
"descriptionDe": "Ein ungeschliffener Stein mit Topas-Einschluss."
},
{
"id": "6",
"slot": 8,
"name": "Raw Iolite",
"nameFr": "Cordiérite brute",
"nameDe": "Roh-Luchssaphir",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Raw Iolite5150.png",
"description": "An uncut, unpolished stone containing what appears to be iolite.",
"descriptionFr": "Une pierre brute qui semble contenir une cordiérite.",
"descriptionDe": "Ein ungeschliffener Stein mit Luchssaphir-Einschluss."
},
{
"id": "7",
"slot": 6,
"name": "Native Gold",
"nameFr": "Pépite d'or natif",
"nameDe": "Naturgold",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Native Gold7589.png",
"description": "A high-purity, naturally occurring nugget of gold.",
"descriptionFr": "Une pépite d'or naturel de très haute qualité.",
"descriptionDe": "Der Glanz dieses natürlich vorkommenden Goldes überstrahlt beinah alles."
},
{
"id": "9",
"slot": 7,
"name": "Raw Emerald",
"nameFr": "Émeraude brute",
"nameDe": "Roh-Smaragd",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Raw Emerald5148.png",
"description": "An uncut, unpolished stone containing what appears to be emerald.",
"descriptionFr": "Une pierre brute qui semble contenir une émeraude.",
"descriptionDe": "Ein ungeschliffener Stein mit Smaragd-Einschluss."
},
{
"id": "10",
"slot": 8,
"name": "Raw Diamond",
"nameFr": "Diamant brut",
"nameDe": "Roh-Diamant",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Raw Diamond5147.png",
"description": "An uncut, unpolished stone containing what appears to be diamond.",
"descriptionFr": "Une pierre brute qui semble contenir un diamant.",
"descriptionDe": "Ein ungeschliffener Stein mit Diamant-Einschluss."
},
{
"id": "8",
"slot": 6,
"name": "Platinum Ore",
"nameFr": "Minerai de platine",
"nameDe": "Platinerz",
"level": "50***",
"gatheringSkill": "80",
"perception": "420+",
"imageUrl": "Platinum Ore5120.png",
"description": "A decent-sized piece of rock containing the precious metal platinum.",
"descriptionFr": "Un morceau de minerai contenant du platine.",
"descriptionDe": "Ein Erzklumpen mit hohem Platingehalt."
},
{
"id": "11",
"slot": 2,
"name": "Gold Sand",
"nameFr": "Sable d'or",
"nameDe": "Goldsand",
"level": "50*",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Gold Sand5273.png",
"description": "Glittering sand consisting of tiny grains of gold.",
"descriptionFr": "Du sable brillant contenant du minerai d'or.",
"descriptionDe": "Goldhaltiger Sand."
},
{
"id": "12",
"slot": 5,
"name": "Water Cluster",
"nameFr": "Agrégat d'eau",
"nameDe": "Wasserpolykristall",
"level": "50",
"gatheringSkill": "50",
"perception": "~",
"imageUrl": "Water Cluster19.png",
"description": "A large crystalline manifestation of aetheric water energy.",
"descriptionFr": "Un agrégat de cristaux d'eau.",
"descriptionDe": "Ein Dendrit aus ätherischer Wasserenergie."
},
{
"id": "13",
"slot": 8,
"name": "Grade 3 Thanalan Topsoil",
"nameFr": "Terreau thanalanais III",
"nameDe": "Thanalan-Humus III",
"level": "50",
"gatheringSkill": "55",
"perception": "",
"imageUrl": "Grade 3 Thanalan Topsoil7766.png",
"description": "Grade 3 topsoil obtained in the Thanalan region. Increases the likelihood that plants will intercross with one another.",
"descriptionFr": "Du terreau de grade III provenant du Thanalan. [Améliore les chances d'obtenir des produits hybrides lors du jardinage.]",
"descriptionDe": "Aus Thanalan stammender Humus der Güteklasse 3. Erhöht die Wahrscheinlichkeit, dass Kreuzungen entstehen."
},
{
"id": "14",
"slot": 7,
"name": "Umbral Rock",
"nameFr": "Roche ombrale",
"nameDe": "Schattenfels",
"level": "50*",
"gatheringSkill": "55",
"perception": "332+",
"imageUrl": "Umbral Rock7610.png",
"description": "A rock with an elemental aspect leaning heavily towards umbral.",
"descriptionFr": "Une roche dont l'aspect élémentaire semble pencher vers l'ombral.",
"descriptionDe": "Gestein, dessen elementare Beschaffenheit zur Dunkelheit tendiert."
},
{
"id": "15",
"slot": 8,
"name": "Grade 3 Shroud Topsoil",
"nameFr": "Terreau sombrelinçois III",
"nameDe": "Finsterwald-Humus III",
"level": "50*",
"gatheringSkill": "55",
"perception": "",
"imageUrl": "Grade 3 Shroud Topsoil7763.png",
"description": "Grade 3 topsoil obtained in the Black Shroud region. Increases the likelihood that plants will yield more crops.",
"descriptionFr": "Du terreau de grade III provenant de la forêt de Sombrelinceul. [Améliore les chances d'obtenir une plus grosse récolte lors du jardinage.]",
"descriptionDe": "Aus Finsterwald stammender Humus der Güteklasse 3. Verbessert potenziell die Erntemenge von Gartenerzeugnissen."
},
{
"id": "16",
"slot": 1,
"name": "Gregarious Worm",
"nameFr": "Ver grégaire",
"nameDe": "Herdenwurm",
"level": "50*",
"gatheringSkill": "55",
"perception": "",
"imageUrl": "Gregarious Worm10095.png",
"description": "A rare form of earthworm, these fat invertebrates also make fine chocobo feed, providing an excellent source of protein for growing birds.",
"descriptionFr": "Cette variété rare d'invertébré vit sous le sol et est idéale pour nourrir les chocobos de course.",
"descriptionDe": "Herdenwurmnester sind nicht besonders schön anzusehen, die Würmer aber stellen für heranwachsende Chocobos einen nicht zu verschmähenden Leckerbissen und eine exzellente Proteinquelle dar."
},
{
"id": "17",
"slot": 6,
"name": "Gold Ore",
"nameFr": "Minerai d'or",
"nameDe": "Golderz",
"level": "50*",
"gatheringSkill": "51",
"perception": "173+",
"imageUrl": "Gold Ore5118.png",
"description": "A decent-sized piece of rock containing the precious metal gold.",
"descriptionFr": "Un morceau de minerai contenant de l'or.",
"descriptionDe": "Ein Erzklumpen mit hohem Goldgehalt."
},
{
"id": "18",
"slot": 7,
"name": "Coblyn Larva",
"nameFr": "Larve de coblyn",
"nameDe": "Kobalos-Larve",
"level": "50*",
"gatheringSkill": "51",
"perception": "",
"imageUrl": "Coblyn Larva6199.png",
"description": "Too dangerous to allow to grow any larger...too adorable to condemn to the furnace.Use item to acquire the coblyn larva minion.",
"descriptionFr": "[Mascotte]Les insectes sont nos amis, il faut les aimer aussi.",
"descriptionDe": "Zu gefährlich, um sie weiter wachsen zu lassen ... aber zu süß, um sie jetzt schon zu beseitigen.Benutze diesen Gegenstand, um die Kobalos-Larve zu rufen."
},
{
"id": "19",
"slot": 1,
"name": "Grade 4 Carbonized Matter",
"nameFr": "Matière carbonique grade IV",
"nameDe": "Karbonisierte Materie G4",
"level": "50*",
"gatheringSkill": "51",
"perception": "",
"imageUrl": "Grade 4 Carbonized Matter5602.png",
"description": "Naturally occurring coal infused with dark matter.[A catalyst used when affixing materia of grade IV or below.]",
"descriptionFr": "Cette matière noire a fusionné avec de la houille. Elle est employée comme catalyseur dans le processus de sertissage de matéria.[Catalyseur pour matérias grades I à IV]",
"descriptionDe": "Natürlich vorkommende, von Dunkelmaterie durchzogene Kohle.Katalysator zum Einsetzen von Materia vom Grad IV oder niedriger."
},
{
"id": "20",
"slot": 2,
"name": "Lightning Cluster",
"nameFr": "Agrégat de foudre",
"nameDe": "Blitzpolykristall",
"level": "50",
"gatheringSkill": "50",
"perception": "",
"imageUrl": "Lightning Cluster18.png",
"description": "A large crystalline manifestation of aetheric lightning energy.",
"descriptionFr": "Un agrégat de cristaux de foudre.",
"descriptionDe": "Ein Dendrit aus ätherischer Blitzenergie."
},
{
"id": "21",
"slot": 3,
"name": "Fire Cluster",
"nameFr": "Agrégat de feu",
"nameDe": "Feuerpolykristall",
"level": "50",
"gatheringSkill": "50",
"perception": "",
"imageUrl": "Fire Cluster14.png",
"description": "A large crystalline manifestation of aetheric fire energy.",
"descriptionFr": "A large crystalline manifestation of aetheric fire energy.",
"descriptionDe": "Ein Dendrit aus ätherischer Feuerenergie."
},
{
"id": "22",
"slot": 4,
"name": "Wind Cluster",
"nameFr": "Agrégat de vent",
"nameDe": "Windpolykristall",
"level": "50",
"gatheringSkill": "50",
"perception": "",
"imageUrl": "Wind Cluster16.png",
"description": "A large crystalline manifestation of aetheric wind energy.",
"descriptionFr": "Un agrégat de cristaux de vent.",
"descriptionDe": "Ein Dendrit aus ätherischer Windenergie."
},
{
"id": "23",
"slot": 6,
"name": "Ice Cluster",
"nameFr": "Agrégat de glace",
"nameDe": "Eispolykristall",
"level": "50",
"gatheringSkill": "50",
"perception": "",
"imageUrl": "Ice Cluster15.png",
"description": "A large crystalline manifestation of aetheric ice energy.",
"descriptionFr": "Un agrégat de cristaux de glace.",
"descriptionDe": "Ein Dendrit aus ätherischer Eisenergie."
},
{
"id": "24",
"slot": 7,
"name": "Earth Cluster",
"nameFr": "Agrégat de terre",
"nameDe": "Erdpolykristall",
"level": "50",
"gatheringSkill": "50",
"perception": "",
"imageUrl": "Earth Cluster17.png",
"description": "A large crystalline manifestation of aetheric earth energy.",
"descriptionFr": "Un agrégat de cristaux de terre.",
"descriptionDe": "Ein Dendrit aus ätherischer Erdenergie."
},
{
"id": "25",
"slot": "random",
"name": "Unaspected Crystal",
"nameFr": "Cristal terni",
"nameDe": "Elementneutraler Kristall",
"level": "50*",
"gatheringSkill": "55",
"perception": "",
"imageUrl": "Unaspected Crystal10099.png",
"description": "For reasons unknown to you, this crystal has completely lost its elemental charge.",
"descriptionFr": "Ce cristal a complètement perdu sa charge élémentaire pour des raisons inconnues.",
"descriptionDe": "Aus dir unbekannten Gründen hat dieser Kristall seine elementare Ladung verloren."
},
{
"id": "26",
"slot": 6,
"name": "Virgin Basilisk Egg",
"nameFr": "Premier Å“uf de basilic",
"nameDe": "Erstgelegtes Basilisken-Ei",
"level": "50***",
"gatheringSkill": "90",
"perception": "238+",
"imageUrl": "Virgin Basilisk Egg10093.png",
"description": "While all eggs a basilisk lays contain traces of rare ore, the first egg laid in life is thought to contain the highest concentration, making it highly sought after by potion mixers and alchemists.",
"descriptionFr": "Un Å“uf issu de la première ponte d'un basilic. Une fois réduite en poudre, sa coquille très dure a des vertus médicinales.",
"descriptionDe": "Obwohl alle von Basilisken gelegten Eier Spuren von seltenen Erzen enthalten, ist die Konzentration im erstgelegten Ei am höchsten. Aus diesem Grund ist es von Alchemisten heiß begehrt."
},
{
"id": "27",
"slot": 1,
"name": "Volcanic Rock Salt",
"nameFr": "Sel gemme noscéen",
"nameDe": "Vulkanisches Steinsalz",
"level": "50*",
"gatheringSkill": "51",
"perception": "173+",
"imageUrl": "Volcanic Rock Salt6152.png",
"description": "The red hue of this rock salt is said to come from the volcanic soil of O'Ghomoro.",
"descriptionFr": "Un morceau de sel cristallisé de haute qualité, rencontré surtout dans la Noscea.",
"descriptionDe": "Die rote Färbung dieses Steinsalzklumpens kommt angeblich durch die vulkanische Erde von O'Ghomoro zustande."
},
{
"id": "28",
"slot": 7,
"name": "Raw Ruby",
"nameFr": "Rubis brut",
"nameDe": "Roh-Rubin",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Raw Ruby5146.png",
"description": "An uncut, unpolished stone containing what appears to be ruby.",
"descriptionFr": "Une pierre brute qui semble contenir un rubis.",
"descriptionDe": "Ein ungeschliffener Stein mit Rubin-Einschluss."
},
{
"id": "29",
"slot": 8,
"name": "Raw Sapphire",
"nameFr": "Saphir brut",
"nameDe": "Roh-Saphir",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Raw Sapphire5151.png",
"description": "An uncut, unpolished stone containing what appears to be sapphire.",
"descriptionFr": "Une pierre brute qui semble contenir un saphir.",
"descriptionDe": "Ein ungeschliffener Stein mit Saphir-Einschluss."
},
{
"id": "30",
"slot": 8,
"name": "Grade 3 La Noscean Topsoil",
"nameFr": "Terreau noscéen III",
"nameDe": "La Noscea-Humus III",
"level": "50*",
"gatheringSkill": "55",
"perception": "",
"imageUrl": "Grade 3 La Noscean Topsoil7760.png",
"description": "Grade 3 topsoil obtained in the La Noscean region. Increases the likelihood that plants will yield higher quality crops.",
"descriptionFr": "Du terreau de grade III provenant de la Noscea. [Améliore les chances d'obtenir des objets de haute qualité lors du jardinage.]",
"descriptionDe": "Aus La Noscea stammender Humus der Güteklasse 3. Verbessert potenziell die Qualität von Gartenerzeugnissen."
},
{
"id": "31",
"slot": 7,
"name": "Astral Rock",
"nameFr": "Roche astrale",
"nameDe": "Astralgestein",
"level": "50*",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Astral Rock5158.png",
"description": "An uncut, unpolished stone imbued with an unbalanced elemental aspect tipping towards astral.",
"descriptionFr": "Une pierre emplie d'énergie astrale.",
"descriptionDe": "Ein Brocken ungeschliffenen Gesteins, das ungleichmäßig verteilte Elementarenergie enthält, die leicht zu Licht tendiert."
},
{
"id": "32",
"slot": 4,
"name": "Silkworm Cocoon",
"nameFr": "Cocon de vers à soie",
"nameDe": "Kokon",
"level": "50*",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Silkworm Cocoon5350.png",
"description": "The lightweight cocoon of the elusive silkworm.",
"descriptionFr": "Le cocon soyeux d'un vers à soie.",
"descriptionDe": "Ein Kokon aus dem Faden der Seidenraupe."
},
{
"id": "33",
"slot": 6,
"name": "Fragrant Log",
"nameFr": "Rondin odorant",
"nameDe": "Duftholz",
"level": "50*",
"gatheringSkill": "55",
"perception": "322+",
"imageUrl": "Fragrant Log7611.png",
"description": "A pleasant-smelling log obtained in the Black Shroud.",
"descriptionFr": "Un rondin au doux parfum obtenu dans la forêt de Sombrelinceul.",
"descriptionDe": "Frisch duftendes Holz aus dem Finsterwald."
},
{
"id": "34",
"slot": 6,
"name": "Shroud Tea Leaves",
"nameFr": "Feuilles de thé de Tinolqa",
"nameDe": "Gridanische Teeblätter",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Shroud Tea Leaves7591.png",
"description": "Picked from plants that grow wild in the Black Shroud, these leaves are extremely bitter and are not ideal for brewing tea.",
"descriptionFr": "Cueillies sur des arbustes sauvages de la forêt de Sombrelinceul, ces feuilles sont extrêmement amères et peu adaptées à la préparation de thé.",
"descriptionDe": "Blätter von Pflanzen, die im Finsterwald wachsen. Tee daraus hat ein sehr bitteres Aroma."
},
{
"id": "35",
"slot": 4,
"name": "Scarlet Sap",
"nameFr": "Sève écarlate",
"nameDe": "Rotharz",
"level": "50**",
"gatheringSkill": "70",
"perception": "193+",
"imageUrl": "Scarlet Sap7590.png",
"description": "Its color reminiscent of blood, this sap is used in the working of aged lumber.",
"descriptionFr": "D'une couleur semblable à celle du sang, cette sève est utilisée pour le travail du bois ancien.",
"descriptionDe": "Dieses blutrote Harz wird verwendet, um altes Holz aufzuarbeiten."
},
{
"id": "36",
"slot": 6,
"name": "Ebony Log",
"nameFr": "Rondin d'ébène",
"nameDe": "Ebenholz-Holzscheit",
"level": "50***",
"gatheringSkill": "80",
"perception": "420+",
"imageUrl": "Ebony Log5394.png",
"description": "A rough-cut log of ebony timber.",
"descriptionFr": "Un imposant rondin d'ébène brut.",
"descriptionDe": "Ein abgehacktes Stück Ebenholz."
},
{
"id": "37",
"slot": 1,
"name": "Trillium",
"nameFr": "Trille",
"nameDe": "Waldlilie",
"level": "50*",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Trillium5545.png",
"description": "A beautiful, white, tripetaloid flower.",
"descriptionFr": "Une ravissante fleur de trillium.",
"descriptionDe": "Eine wunderhübsche, schneeweiße und dreiblättrige Blume."
},
{
"id": "38",
"slot": 1,
"name": "Honey Lemon Seeds",
"nameFr": "Graines de citronnier miel",
"nameDe": "Honigzitronenkerne",
"level": "50*",
"gatheringSkill": "51",
"perception": "",
"imageUrl": "Honey Lemon Seeds7733.png",
"description": "Honey lemon seeds suitable for garden cultivation.",
"descriptionFr": "Ces graines servent à faire pousser des citronniers miel.",
"descriptionDe": "Zur Anpflanzung in einem Beet."
},
{
"id": "39",
"slot": 2,
"name": "Honey Lemon",
"nameFr": "Citron miel",
"nameDe": "Honigzitrone",
"level": "50*",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Honey Lemon6147.png",
"description": "This rare type of lemon native to the continent of Othard is so sweet, it can be eaten raw.EXP Bonus: +3% Duration: 30m",
"descriptionFr": "Cette variété rare de citron au goût acide pousse dans les terres proche-orientales. Il est légèrement sucré.Points d'expérience gagnés +3%Durée d'effet: 30 minutes",
"descriptionDe": "Diese seltene Zitronenart kommt von dem Kontinent Othard und ist so süß, dass man sie direkt so essen kann.Routine + 3 %Wirkungsdauer: 30 Minuten"
},
{
"id": "40",
"slot": 6,
"name": "Young Cieldalaes Spinach",
"nameFr": "Jeunes épinards des Cieldalaes",
"nameDe": "Junger Ciedaläen-Spinat",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Young Cieldalaes Spinach7594.png",
"description": "This bunch of Cieldalaes spinach has been picked young to reduce bitterness.",
"descriptionFr": "Une plante rare des îles Cieldalaes, goûteuse car peu amère. [Matériau d'artisanat]",
"descriptionDe": "Diese Spinatsorte wird in einem frühen Wachstumsstadium gepflückt. Die Blätter sind dann noch nicht so bitter."
},
{
"id": "41",
"slot": 6,
"name": "Redolent Log",
"nameFr": "Rondin fragrant",
"nameDe": "Edelduftholz",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Redolent Log8031.png",
"description": "An unforgettably pleasant-smelling log obtained in the Black Shroud.",
"descriptionFr": "Un rondin au parfum fort obtenu dans la forêt de Sombrelinceul.",
"descriptionDe": "Besonders edel duftendes Holz aus dem Finsterwald."
},
{
"id": "42",
"slot": 2,
"name": "Blood Orange",
"nameFr": "Orange sanguine",
"nameDe": "Blutorange",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Blood Orange7595.png",
"description": "A rare variety of orange grown in La Noscea, named for its unusual red flesh.EXP Bonus: +3% Duration: 30m",
"descriptionFr": "Une variété d'orange provenant de la Noscea. Elle tire son nom de sa chair d'un rouge profond.Points d'expérience gagnés +3%Durée d'effet: 30 minutes",
"descriptionDe": "Eine seltene Orangensorte aus La Noscea. Ihren Namen verdankt sie ihrem roten Fruchtfleisch. Gewährt einen Routine-Bonus von 3 %.Wirkungsdauer: 30 Minuten"
},
{
"id": "43",
"slot": 6,
"name": "Bamboo Stick",
"nameFr": "Tige de bambou",
"nameDe": "Bambus-Bauholz",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Bamboo Stick5365.png",
"description": "A cut and dried piece of thick bamboo.",
"descriptionFr": "Une solide tige de bambou séchée.",
"descriptionDe": "Ein zugeschnittenes Stück Bambusholz."
},
{
"id": "44",
"slot": 6,
"name": "La Noscean Leek",
"nameFr": "Poireau noscéen",
"nameDe": "La Noscea-Porree",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "La Noscean Leek7593.png",
"description": "A rare variety of leek, typically harvested young for a milder flavor.",
"descriptionFr": "Une variété rare de poireaux que l'on récolte jeunes, car ils sont plus doux.",
"descriptionDe": "Eine seltene Porree-Art, die jung gepflückt wird."
},
{
"id": "45",
"slot": "random",
"name": "Waterfowl Feather",
"nameFr": "Plume de sauvagine",
"nameDe": "Wasservogelfeder",
"level": "50**",
"gatheringSkill": "70",
"perception": "",
"imageUrl": "Waterfowl Feather8024.png",
"description": "Unlike those of tree-dwelling cloudkin, waterfowl feathers are exceptional at trapping in heat while keeping out water.",
"descriptionFr": "Une plume provenant d'un oiseau aquatique et ayant pour qualité de conserver la chaleur.",
"descriptionDe": "Die Feder eines Wasservogels ist wasserabweisend und isoliert gegen Kälte."
},
{
"id": "46",
"slot": 2,
"name": "Apricot",
"nameFr": "Abricot",
"nameDe": "Aprikose",
"level": "50**",
"gatheringSkill": "70",
"perception": "389+",
"imageUrl": "Apricot7592.png",
"description": "A variety of stone fruit borne over from the Near East. Its orange flesh is at once sweet and tart.EXP Bonus: +3% Duration: 30m",
"descriptionFr": "Une espèce de fruit à noyau originaire du Proche-Orient. Sa chair orange est à la fois sucrée et acide.Points d'expérience gagnés +3%Durée d'effet: 30 minutes",
"descriptionDe": "Eine Steinfrucht aus dem Nahen Osten, deren oranges Fruchtfleisch erfrischend süß ist. Gewährt einen Routine-Bonus von 3 %.Dauer: 30 Minuten"
},
{
"id": "47",
"slot": 6,
"name": "Spruce Log",
"nameFr": "Rondin d'épicéa",
"nameDe": "Fichten-Holzscheit",
"level": "50*",
"gatheringSkill": "51",
"perception": "173+",
"imageUrl": "Spruce Log5395.png",
"description": "A rough-cut log of spruce timber.",
"descriptionFr": "Un imposant rondin d'épicéa brut.",
"descriptionDe": "Ein abgehacktes Stück Fichtenholz."
},
{
"id": "48",
"slot": 1,
"name": "Prickly Pineapple Seeds",
"nameFr": "Graines d'ananas épineux",
"nameDe": "Ananassamen",
"level": "50*",
"gatheringSkill": "51",
"perception": "",
"imageUrl": "Prickly Pineapple Seeds7734.png",
"description": "Prickly pineapple seeds suitable for garden cultivation.",
"descriptionFr": "Ces graines servent à faire pousser des ananas épineux.",
"descriptionDe": "Zur Anpflanzung in einem Beet."
},
{
"id": "49",
"slot": 4,
"name": "Prickly Pineapple",
"nameFr": "Ananas épineux",
"nameDe": "Ananas",
"level": "50*",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Prickly Pineapple4816.png",
"description": "A sweet and tangy fruit covered in a thick, spike-laden skin.EXP Bonus: +3% Duration: 30m",
"descriptionFr": "Un fruit au goût aigre-doux originaire d'un continent situé loin à l'ouest d'Éorzéa.Points d'expérience gagnés +3%Durée d'effet: 30 minutes",
"descriptionDe": "Diese Früchte sind wunderbar süß-sauer und stammen ursprünglich vom neuen Kontinent.Routine + 3 %Wirkungsdauer: 30 Minuten"
},
{
"id": "50",
"slot": 6,
"name": "Cypress Log",
"nameFr": "Rondin de cyprès",
"nameDe": "Zypressen-Bauholz",
"level": "50***",
"gatheringSkill": "80",
"perception": "420+",
"imageUrl": "Cypress Log9518.png",
"description": "A rough-cut log of cypress timber.",
"descriptionFr": "Un imposant rondin de bois de cyprès brut.",
"descriptionDe": "Zypressen-Holz, das für die Weiterverarbeitung zurechtgeschnitten wurde."
},
{
"id": "51",
"slot": 8,
"name": "Vampire Plant",
"nameFr": "Baie vampire",
"nameDe": "Vampirpflanze",
"level": "50*",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Vampire Plant5547.png",
"description": "This rare variety of parasitic plant is known to suck the lifeblood from all flora with which it comes in contact.",
"descriptionFr": "Une plante qui se développe aux dépens de l'arbre qui lui sert d'hôte. Son mode de vie lui a valu son nom sinistre, par association avec les vampires suceurs de sang.",
"descriptionDe": "Diese seltene Unterart einer parasitären Pflanze ist dafür bekannt, die gesamte Lebensenergie aus der Flora zu saugen, mit der sie in Kontakt kommt."
},
{
"id": "52",
"slot": 2,
"name": "Mazlaya Greens",
"nameFr": "Herbes de Mazlaya",
"nameDe": "Mazlaya-Sprossen",
"level": "50*",
"gatheringSkill": "55",
"perception": "",
"imageUrl": "Mazlaya Greens10098.png",
"description": "Once found growing all across the island of Mazlaya, this bright-green plant was almost completely wiped out when chocobos brought to the island by farmers devoured nearly every one they could find.",
"descriptionFr": "Les chocobos de course raffolent de ce légume rare.",
"descriptionDe": "Einst weit verbreitet auf der Insel Mazlaya, wären diese leicht klebrigen Sprossen beinah gänzlich von den Arbeits-Chocobos der dort ansässigen Bauern verschlungen worden."
},
{
"id": "53",
"slot": 7,
"name": "Black Truffle",
"nameFr": "Truffe noire",
"nameDe": "Schwarze Trüffel",
"level": "50*",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Black Truffle4800.png",
"description": "A rare black mushroom that grows in the soil, rather than above it, making the specimen almost impossible to locate. It is treasured as a delicacy for its unique aroma.",
"descriptionFr": "Un champignon comestible de couleur noire très odorant, poussant dans le sol.",
"descriptionDe": "Diese aromatischen Pilze wachsen in der Erde."
},
{
"id": "54",
"slot": 1,
"name": "Dzemael Tomato Seeds",
"nameFr": "Graines de tomate Dzemael",
"nameDe": "Dzemael-Tomatensamen",
"level": "50*",
"gatheringSkill": "51",
"perception": "",
"imageUrl": "Dzemael Tomato Seeds7724.png",
"description": "Dzemael tomato seeds suitable for garden cultivation.",
"descriptionFr": "Ces graines servent à faire pousser des tomates Dzemael.",
"descriptionDe": "Zur Anpflanzung in einem Beet."
},
{
"id": "55",
"slot": 3,
"name": "Dzemael Tomato",
"nameFr": "Tomate Dzemael",
"nameDe": "Dzemael-Tomate",
"level": "50*",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Dzemael Tomato6148.png",
"description": "A rare crossbreed of ruby tomato developed and perfected by House Dzemael botanists.",
"descriptionFr": "Cette rare variété de tomate particulièrement goûteuse a été obtenue par amélioration de l'espèce. C'est un moine originaire de la maison Dzemael qui l'a mise au point.",
"descriptionDe": "Eine seltene Abart von Rubintomaten. Gezüchtet und perfektioniert von Gärtnern des Hauses Dzemael."
},
{
"id": "56",
"slot": 1,
"name": "Rosemary",
"nameFr": "Romarin",
"nameDe": "Rosmarin",
"level": "50***",
"gatheringSkill": "90",
"perception": "450+",
"imageUrl": "Rosemary10096.png",
"description": "A savory herb treasured for its ability to enhance focus and concentration.",
"descriptionFr": "Une herbe savoureuse prisée pour sa capacité à améliorer la concentration.",
"descriptionDe": "Ein pikantes Gewürz, das angeblich die Konzentration verbessern kann."
},
{
"id": "57",
"slot": 2,
"name": "Thavnairian Mistletoe",
"nameFr": "Gui de Thavnair",
"nameDe": "Thavnair-Mistelzweig",
"level": "50*",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Thavnairian Mistletoe5537.png",
"description": "A variety of parasitic plant that is commonly found growing on the stout acacia trees of Thavnair. The inhabitants of Thavnair's capital city of RadzatHan have a strange custom that states if two p",
"descriptionFr": "Une plante qui se développe aux dépens de l'arbre qui lui sert d'hôte, et qui pousse dans l'île proche-orientale de Thavnair.",
"descriptionDe": "Eine Variante einer parasitären Pflanze, die häufig an den strammen Akazien in Thavnair vorkommt. Die Bewohner von Thavnairs Hauptstadt Radz-at-Han haben einen seltsamen Brauch, demzufolge zwei Leu"
},
{
"id": "58",
"slot": 7,
"name": "Kidragora",
"nameFr": "Mini mini mandragore",
"nameDe": "Kindragora",
"level": "50*",
"gatheringSkill": "51",
"perception": "",
"imageUrl": "Kidragora6209.png",
"description": "Even in space, everyone can hear this seedkin scream.Use item to acquire the kidragora minion.",
"descriptionFr": "[Mascotte]Malgré sa taille réduite, cette mandragore peut pousser des cris très perçants.",
"descriptionDe": "Selbst im Weltraum hört man diese Pflanze schreien.Benutze diesen Gegenstand, um die Kindragora zu rufen."
},
{
"id": "59",
"slot": 8,
"name": "Trillium Bulb",
"nameFr": "Bulbe de trille",
"nameDe": "Waldlilien-Knolle",
"level": "50*",
"gatheringSkill": "51",
"perception": "320+",
"imageUrl": "Trillium Bulb5546.png",
"description": "If planted and tended with loving care, this bulb should grow into a lovely trillium plant.",
"descriptionFr": "Le bulbe d'une fleur de trillium.",
"descriptionDe": "Wird diese Knolle eingepflanzt und liebevoll gegossen, so wächst daraus eine Waldlilie."
},
{
"id": "61",
"slot": "unknown",
"name": "Silver Sovereign",
"nameFr": "Souverain d'argent",
"nameDe": "Silberner Souverän",
"level": "",
"gatheringSkill": "",
"perception": "",
"imageUrl": "Silver Sovereign7690.png",
"description": "Known also by the name of tarpon, this rare fish is said to have swum the oceans of Eorzea since the dawn of time. Lord of the waters of Oschon's Torch.",
"descriptionFr": "Ce poisson ancien, également connu sous le nom de tarpon, serait le maître des eaux près de la Torche d'Oschon.",
"descriptionDe": "Auch unter dem Namen Tarpun bekannt, soll dieser Fisch die eorzäischen Ozeane schon seit Anbeginn der Zeit durchqueren. Uneingeschränkter Herrscher über die Gewässer von Oschons Fackel."
},
{
"id": "62",
"slot": "unknown",
"name": "Sunrise",
"nameFr": "Sunrise",
"nameDe": "Sunrise",
"level": "",
"gatheringSkill": "",
"perception": "",
"imageUrl": "Gil1.png"
},
{
"id": "63",
"slot": "unknown",
"name": "Navigator's Brand",
"nameFr": "Sabre de Llymlaen",
"nameDe": "Königsdolchfisch",
"level": "",
"gatheringSkill": "",
"perception": "",
"imageUrl": "Navigator's Brand7693.png",
"description": "A king among Navigator's daggers, and lord of the waters of the Brewer's Beacon.",
"descriptionFr": "Une dague de Llymlaen légendaire que l'on dit être le maître des eaux près du phare des Brasseurs.",
"descriptionDe": "Auch erfahrenen Seeleuten und Fischfreunden stockt der Atem, wenn sie den König der Dolchfische über das Meer gleiten sehen. Dieser majestätische Kapitalfisch beansprucht ein Küstengebiet um den"
},
{
"id": "64",
"slot": "unknown",
"name": "Cupfish",
"nameFr": "Poisson-flan",
"nameDe": "Kelchfisch",
"level": "",
"gatheringSkill": "",
"perception": "",
"imageUrl": "Cupfish7902.png",
"description": "A rare freshwater fish which spends the entirety of its life hiding in locations which rarely see the light of the sun.",
"descriptionFr": "Un poisson d'eau douce rare qui vit dans des endroits où la lumière ne parvient pas et que l'on dit être l'un des maîtres des eaux de la Noscea.",
"descriptionDe": "Ein seltsamer Süßwasserfisch, der in absolut dunklen Gewässern lebt. Gehört zu den Kapitalfischen."
},
{
"id": "65",
"slot": "unknown",
"name": "Sunset",
"nameFr": "Sunset",
"nameDe": "Sunset",
"level": "",
"gatheringSkill": "",
"perception": "",
"imageUrl": "Sunset"
},
{
"id": "66",
"slot": "unknown",
"name": "Worm of Nym",
"nameFr": "Ver de Nym",
"nameDe": "Wurm von Nym",
"level": "",
"gatheringSkill": "",
"perception": "",
"imageUrl": "Worm of Nym7916.png",
"description": "A king among jade eels, and lord of the Bronze Lake shallows.",
"descriptionFr": "A king among jade eels, and lord of the Bronze Lake shallows.",
"descriptionDe": "Der kapitalste Jade-Aal und Herr der Bronzesee-Untiefen."
},
{
"id": "67",
"slot": "unknown",
"name": "Gigant Clam",
"nameFr": "Cocoquillage géant",
"nameDe": "Gigamuschel",
"level": "",
"gatheringSkill": "",
"perception": "",
"imageUrl": "Gigant Clam10123.png",
"description": "An especially large giant clam. Local fisher estimates put the age of this wavekin at over five score years.",
"descriptionFr": "Sorte de très gros bivalve dont la coquille striée rappelle la forme des vagues.",
"descriptionDe": "Eine ungewöhnlich große Riesenmuschel. Örtliche Fischer schätzen ihr Alter auf über hundert Jahre."
},
{
"id": "68",
"slot": 4,
"name": "Yellow Quartz",
"nameFr": "Quartz jaune",
"nameDe": "Gelber Quarz",
"level": "52",
"gatheringSkill": "125",
"perception": "273+",
"imageUrl": "Yellow Quartz5162.png",
"description": "Several small pieces of bright-yellow unpolished quartz.",
"descriptionFr": "Une petite pierre de couleur dorée.",
"descriptionDe": "Kleine Stücke gelben Quarzes."
},
{
"id": "69",
"slot": 6,
"name": "Green Quartz",
"nameFr": "Quartz vert",
"nameDe": "Grüner Quarz",
"level": "55",
"gatheringSkill": "136",
"perception": "351+",
"imageUrl": "Green Quartz5161.png",
"description": "Several small pieces of deep green unpolished quartz.",
"descriptionFr": "Une petite pierre de couleur verte.",
"descriptionDe": "Kleine Stücke grünen Quarzes."
},
{
"id": "70",
"slot": 2,
"name": "Cuprite",
"nameFr": "Minerai de cuprite",
"nameDe": "Cuprit",
"level": "59",
"gatheringSkill": "148",
"perception": "384+",
"imageUrl": "Cuprite12942.png",
"description": "Though its appearance suggests it is a precious gem, this ore is actually a rare form of red translucent copper.",
"descriptionFr": "Un morceau de minerai contenant du cuivre.",
"descriptionDe": "Obwohl dieses Erz wie ein wertvoller Edelstein aussieht, handelt es sich doch bloß um eine seltene Form von durchsichtigem roten Kupfer."
},
{
"id": "71",
"slot": 3,
"name": "Light Kidney Ore",
"nameFr": "Minerai d'hématite",
"nameDe": "Hämatit",
"level": "57",
"gatheringSkill": "142",
"perception": "493+",
"imageUrl": "Light Kidney Ore5117.png",
"description": "A reddish ore containing large quantities of iron. Its wide availability makes it optimal for smelting in locations where purer forms of iron ore are difficult to procure, such as militia forges. Thi",
"descriptionFr": "Ce minéral composé d'oxyde de fer est idéal pour la fonte et l'affinage.",
"descriptionDe": "Dieses fast schwarze Mineral glänzt poliert in dunklem Silber und kann wegen seines hohen Eisengehalts zur Gewinnung von weichem Eisen dienen."
},
{
"id": "72",
"slot": 4,
"name": "Astral Moraine",
"nameFr": "Granulat astral",
"nameDe": "Lichtkies",
"level": "60*",
"gatheringSkill": "180",
"perception": "645+",
"imageUrl": "Astral Moraine5226.png",