-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathlanguages.json
More file actions
19604 lines (19604 loc) · 698 KB
/
languages.json
File metadata and controls
19604 lines (19604 loc) · 698 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
{
"/Lotus/Language/Events/ValentinesFortunaName": {
"value": "Star Days"
},
"/Lotus/Language/G1Quests/HeatFissuresEventScore": {
"value": "Thermia Fractures Sealed"
},
"/Lotus/Language/Isleweaver/DuviriMurmurEventDescription": {
"value": "Recover stolen Dominus Aureus to take down Neci Rusalka and return Dominus Thrax to his throne! Obtain them from Operation: Eight Claw spirals in Duviri.\n\nVisit Thrax in the Dormizone to exchange Dominus Aureus for rewards. Invictus Signas will be unlocked as the community returns stolen Aureus to Thrax."
},
"/Lotus/Language/Isleweaver/DuviriMurmurEventScore": {
"value": "Dominus Aureus Collection Progress:"
},
"/Lotus/Language/Isleweaver/DuviriMurmurEventTitle": {
"value": "Operation: Eight Claw"
},
"/Lotus/Language/JadeShadows/JadeShadowsEventName": {
"value": "Operation: Belly of the Beast"
},
"/Lotus/Language/JadeShadows/JadeShadowsEventScore": {
"value": "Volatile Motes Collection Progress"
},
"/Lotus/Language/JadeShadows/JadeShadowsShortEventDesc": {
"value": "Stop Parvos Granum! Collect Volatile Motes from Operation Ascension missions on Brutus (Uranus) and special Operation Alerts.\nVisit Ordis on Larunda Relay (Mercury) to claim rewards."
},
"/Lotus/Language/TauPrequel/TauPrequelFinal/BloodOfPeritaDetails": {
"value": "Collect Marks of Valiance by facing the darkest of memories in exchange for lucrative rewards. Obtain them from Perita Rebellion missions and special Void Alerts.\n\nVisit Roathe in La Cathédrale to claim rewards and show the remnant of the Orokin true valor."
},
"/Lotus/Language/TauPrequel/TauPrequelFinal/TauPrequelEventName": {
"value": "Operation: Blood of Perita"
},
"/Lotus/Powersuits/Odalisk/Odalisk": {
"value": "Protea"
},
"/Lotus/StoreItems/Powersuits/Bard/OctaviaPrime": {
"value": "Octavia Prime"
},
"/Lotus/StoreItems/Powersuits/IronFrame/IronFramePrime": {
"value": "Hildryn Prime"
},
"/Lotus/StoreItems/Powersuits/Nezha/NezhaPrime": {
"value": "Nezha Prime"
},
"/Lotus/StoreItems/Powersuits/Trapper/TrapperPrime": {
"value": "Vauban Prime"
},
"/Lotus/StoreItems/Powersuits/Wisp/WispPrime": {
"value": "Wisp Prime"
},
"/Lotus/StoreItems/Types/BoosterPacks/CalendarArtifactPack": {
"value": "Arcane Enhancements"
},
"/Lotus/StoreItems/Types/BoosterPacks/CalendarMajorArtifactPack": {
"value": "Arcane Enhancements: Double Pack"
},
"/Lotus/StoreItems/Types/BoosterPacks/CalendarRivenPack": {
"value": "Riven"
},
"/Lotus/StoreItems/Types/Game/ActionFigureDioramas/EmpyreanRegionADiorama": {
"value": "Empyrean Vignette"
},
"/Lotus/StoreItems/Types/Game/Projections/T1VoidProjectionMagNovaVaultABronze": {
"value": "Lith M2 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T1VoidProjectionNezhaOctaviaVaultABronze": {
"value": "Lith O3 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T1VoidProjectionNezhaOctaviaVaultBBronze": {
"value": "Lith G7 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T1VoidProjectionWispHildrynVaultABronze": {
"value": "Lith L6 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T1VoidProjectionWispHildrynVaultBBronze": {
"value": "Lith F3 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T2VoidProjectionMagNovaVaultABronze": {
"value": "Meso B3 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T2VoidProjectionNezhaOctaviaVaultABronze": {
"value": "Meso N15 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T2VoidProjectionNezhaOctaviaVaultBBronze": {
"value": "Meso Z5 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T2VoidProjectionWispHildrynVaultABronze": {
"value": "Meso G10 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T3VoidProjectionMagNovaVaultABronze": {
"value": "Neo N9 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T3VoidProjectionNezhaOctaviaVaultABronze": {
"value": "Neo T8 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T3VoidProjectionWispHildrynVaultABronze": {
"value": "Neo H4 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T4VoidProjectionBaroAkmagnusPrimeBronze": {
"value": "Axi M5 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T4VoidProjectionMagNovaVaultABronze": {
"value": "Axi S4 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T4VoidProjectionMagNovaVaultBBronze": {
"value": "Axi A5 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T4VoidProjectionNezhaOctaviaVaultABronze": {
"value": "Axi P5 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T4VoidProjectionPBronze": {
"value": "Axi A2 Relic (Intact)"
},
"/Lotus/StoreItems/Types/Game/Projections/T4VoidProjectionWispHildrynVaultABronze": {
"value": "Axi W4 Relic"
},
"/Lotus/StoreItems/Types/Game/Projections/T4VoidProjectionWispHildrynVaultBBronze": {
"value": "Axi S19 Relic"
},
"/Lotus/StoreItems/Types/Game/QuartersWallpapers/LavosAlchemistWallpaper": {
"value": "Javi's Scrawling"
},
"/Lotus/StoreItems/Types/Game/ShipScenes/CorpusShipScene": {
"value": "Corpus Interior Decorations"
},
"/Lotus/StoreItems/Types/Game/ShipScenes/PrimeLisetFiligreeScene": {
"value": "Filigree Prime Decoration"
},
"/Lotus/StoreItems/Types/Gameplay/NarmerSorties/ArchonCrystalAmar": {
"value": "Crimson Archon Shard"
},
"/Lotus/StoreItems/Types/Gameplay/NarmerSorties/ArchonCrystalGreen": {
"value": "Emerald Archon Shard"
},
"/Lotus/StoreItems/Types/Gameplay/NarmerSorties/ArchonCrystalNira": {
"value": "Amber Archon Shard"
},
"/Lotus/StoreItems/Types/Items/MiscItems/WeaponMeleeArcaneUnlocker": {
"value": "Melee Arcane Adapter"
},
"/Lotus/StoreItems/Types/Items/MiscItems/WeaponSecondaryArcaneUnlocker": {
"value": "Adaptador de Arcano Secundario"
},
"/Lotus/StoreItems/Types/Items/MiscItems/WeaponUtilityUnlocker": {
"value": "Exilus Weapon Adapter"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/BaroKiTeerDecorationB": {
"value": "Akka Luxxum Ornament"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/BaroPlanter": {
"value": "Clatharc Planter"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/BekranZaftBucketBroom": {
"value": "Bekran Zaft's Equipment"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/DomsFinalDrink": {
"value": "Aged Claret of Denas"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/ErraBobbleHead": {
"value": "Noggle Statue - Erra"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/GarvLatroxPoster": {
"value": "Garv & Latrox Poster"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/GrendelOrokinDishSet": {
"value": "Karishh's Dinnerware"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/HildrynPrimeBobbleHead": {
"value": "Noggle Statue - Hildryn Prime"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/Leverian/IvaraLeverianPovisRecordsDecoration": {
"value": "Secret History Replica"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/LisetPropCleaningDroneDuviri": {
"value": "Domestik Dais Drone"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/LisetPropCorpusBasilisk": {
"value": "Basilisk Fighter Decoration"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/LisetPropGrineerCutter": {
"value": "Cutter Fighter Decoration"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/LisetPropGrineerFlak": {
"value": "Flak Fighter Decoration"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/LisetPropShawzinPrime": {
"value": "Aristei Prime Shawzin"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/MagPrimeBobbleHead": {
"value": "Noggle Statue - Mag Prime"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/NezhaPrimeBobbleHead": {
"value": "Noggle Statue - Nezha Prime"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/NovaPrimeBobbleHead": {
"value": "Noggle Statue - Nova Prime"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/OctaviaPrimeBobbleHead": {
"value": "Noggle Statue - Octavia Prime"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/ParazonPoster": {
"value": "Parazon Poster"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/Plushies/Plushy2021QTCC": {
"value": "Conquera Kuaka Floof"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/Plushies/Plushy2022QTCC": {
"value": "Conquera Sawgaw Floof"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/Plushies/PlushyVirminkQTCC": {
"value": "Conquera Virmink Floof"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/SummerGameFestPoster": {
"value": "Dog Days Protea Display"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/TarotCardTennoConA": {
"value": "Deimos Fass Prex"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/TarotCardTennoConF": {
"value": "Deimos Jugulus Prex"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/TarotCardTennoConG": {
"value": "Deimos Saxum Prex"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/TarotCardTennoConI": {
"value": "Xaku Prex"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/TarotCardTennoConJ": {
"value": "Deimos Kymaeros Prex"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/UmbraPedestal": {
"value": "Umbra Pedestal"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/Vignettes/Warframes/ArchwingAFItem": {
"value": "Archwing Articula"
},
"/Lotus/StoreItems/Types/Items/ShipDecos/WispPrimeBobbleHead": {
"value": "Noggle Statue - Wisp Prime"
},
"/Lotus/StoreItems/Types/Items/SongItems/LotusEatersSongItem": {
"value": "The Lotus Eaters Login Music"
},
"/Lotus/StoreItems/Types/Recipes/Components/WeaponUtilityUnlockerBlueprint": {
"value": "Exilus Weapon Adapter Blueprint"
},
"/Lotus/StoreItems/Types/Restoratives/Consumable/AssassinBait": {
"value": "Stalker Beacon"
},
"/Lotus/StoreItems/Types/Restoratives/Consumable/AssassinBaitB": {
"value": "Zanuka Hunter Beacon"
},
"/Lotus/StoreItems/Types/Restoratives/Consumable/AssassinBaitC": {
"value": "Grustrag Three Beacon"
},
"/Lotus/StoreItems/Types/Sentinels/SentinelPowersuits/PrimeShadePowerSuit": {
"value": "Shade Prime"
},
"/Lotus/StoreItems/Types/StoreItems/AvatarImages/AvatarImageBaruukDoanStyle": {
"value": "Baruuk Doan Silhouette Glyph"
},
"/Lotus/StoreItems/Types/StoreItems/AvatarImages/AvatarImageDogDaysHydroidGlyph": {
"value": "Community Dog Days Hydroid Glyph"
},
"/Lotus/StoreItems/Types/StoreItems/AvatarImages/AvatarImageDogDaysLokiGlyph": {
"value": "Community Dog Days Loki Glyph"
},
"/Lotus/StoreItems/Types/StoreItems/AvatarImages/AvatarImageDogDaysNovaGlyph": {
"value": "Community Dog Days Nova Glyph"
},
"/Lotus/StoreItems/Types/StoreItems/AvatarImages/AvatarImageDogDaysValkyrGlyph": {
"value": "Community Dog Days Valkyr Glyph"
},
"/Lotus/StoreItems/Types/StoreItems/AvatarImages/AvatarImageIvaraAction": {
"value": "Ivara In Action Glyph"
},
"/Lotus/StoreItems/Types/StoreItems/AvatarImages/AvatarImageTeshinVed": {
"value": "Teshin Glyph"
},
"/Lotus/StoreItems/Types/StoreItems/AvatarImages/ImageBaroKiteer": {
"value": "Baro Ki'teer Glyph"
},
"/Lotus/StoreItems/Types/StoreItems/AvatarImages/Seasonal/AvatarImageCNY2025SnakeGlyphA": {
"value": "Giving Snake Glyph"
},
"/Lotus/StoreItems/Types/StoreItems/AvatarImages/TwinSnakesGlyph": {
"value": "Vome-Fass Glyph"
},
"/Lotus/StoreItems/Upgrades/CosmeticEnhancers/Peculiars/EvilSpiritMod": {
"value": "Peculiar Audience"
},
"/Lotus/StoreItems/Upgrades/Mods/Archwing/Rifle/Expert/ArchwingRifleDamageAmountModExpert": {
"value": "Primed Rubedo-Lined Barrel"
},
"/Lotus/StoreItems/Upgrades/Mods/FusionBundles/CircuitSilverSteelPathFusionBundle": {
"value": "6,000 Endo"
},
"/Lotus/StoreItems/Upgrades/Mods/Melee/WeaponGlaiveOnKillBuffSecondary": {
"value": "Combo Fury"
},
"/Lotus/StoreItems/Upgrades/Mods/Pistol/DualStat/ElectEventPistolMod": {
"value": "Jolt"
},
"/Lotus/StoreItems/Upgrades/Mods/Pistol/Expert/PrimedWeaponElectricityDamageMod": {
"value": "Primed Convulsion"
},
"/Lotus/StoreItems/Upgrades/Mods/Pistol/Expert/WeaponPistolFactionDamageCorpusExpert": {
"value": "Primed Expel Corpus"
},
"/Lotus/StoreItems/Upgrades/Mods/Sentinel/Kubrow/Expert/KubrowPackLeaderExpertMod": {
"value": "Primed Pack Leader"
},
"/Lotus/StoreItems/Upgrades/Mods/Shotgun/Expert/WeaponShotgunConvertAmmoModExpert": {
"value": "Primed Shotgun Ammo Mutation"
},
"/Lotus/StoreItems/Upgrades/Mods/Warframe/Expert/AvatarShieldMaxModExpert": {
"value": "Primed Redirection"
},
"/Lotus/StoreItems/Upgrades/Skins/Armor/BaroArmour/BaroArmourA": {
"value": "Ki'teer Shoulder Plates"
},
"/Lotus/StoreItems/Upgrades/Skins/Armor/BaroArmour/BaroArmourC": {
"value": "Ki'teer Chest Plate"
},
"/Lotus/StoreItems/Upgrades/Skins/Armor/BaroArmour/BaroArmourL": {
"value": "Ki'teer Leg Plates"
},
"/Lotus/StoreItems/Upgrades/Skins/Armor/BaroArmourThree/BaroArmourThreeA": {
"value": "Ki'Teer Greth Shoulder Plates"
},
"/Lotus/StoreItems/Upgrades/Skins/Armor/BaroArmourThree/BaroArmourThreeC": {
"value": "Ki'Teer Greth Chest Plate"
},
"/Lotus/StoreItems/Upgrades/Skins/Armor/BaroArmourThree/BaroArmourThreeL": {
"value": "Ki'Teer Greth Leg Plates"
},
"/Lotus/StoreItems/Upgrades/Skins/Armor/TnShinaiArmor/TnShinaiArmorA": {
"value": "Tannukai Shoulder Plates"
},
"/Lotus/StoreItems/Upgrades/Skins/Armor/TnShinaiArmor/TnShinaiArmorC": {
"value": "Tannukai Chest Plates"
},
"/Lotus/StoreItems/Upgrades/Skins/Armor/TnShinaiArmor/TnShinaiArmorL": {
"value": "Tannukai Leg Plates"
},
"/Lotus/StoreItems/Upgrades/Skins/Catbrows/Armor/CatbrowArmorVoidTraderA": {
"value": "Ki'teer Kavat Armor"
},
"/Lotus/StoreItems/Upgrades/Skins/Clan/CNY2022EmblemItem": {
"value": "Lunar Renewal Tiger Emblem"
},
"/Lotus/StoreItems/Upgrades/Skins/Clan/CNY2023EmblemItem": {
"value": "Lunar Renewal Rabbit Emblem"
},
"/Lotus/StoreItems/Upgrades/Skins/Clan/CNY2025SnakeEmblem": {
"value": "Lunar Renewal Snake Emblem"
},
"/Lotus/StoreItems/Upgrades/Skins/Clan/Dragon2024BadgeItem": {
"value": "Lunar Renewal Dragon Emblem"
},
"/Lotus/StoreItems/Upgrades/Skins/Clan/TwitchNecraloidBadgeItem": {
"value": "Necraseal Emblem"
},
"/Lotus/StoreItems/Upgrades/Skins/Effects/BaroEphemeraB": {
"value": "Ki'Teer Reverence Ephemera"
},
"/Lotus/StoreItems/Upgrades/Skins/Effects/EphemeraNezhaPrime": {
"value": "Baurahn Prime Ephemera"
},
"/Lotus/StoreItems/Upgrades/Skins/Effects/FootstepsMaple": {
"value": "Fae Path Ephemera"
},
"/Lotus/StoreItems/Upgrades/Skins/Infestation/NidusAlternateSkin": {
"value": "Nidus Immortal Skin"
},
"/Lotus/StoreItems/Upgrades/Skins/Leverian/NezhaLeverian/NezhaLeverianPolearm": {
"value": "Reshantur Cult Spear Skin"
},
"/Lotus/StoreItems/Upgrades/Skins/Liset/LisetSkinTwitchPrime": {
"value": "Spektaka Liset Skin"
},
"/Lotus/StoreItems/Upgrades/Skins/Liset/LisetSkinVoidTrader": {
"value": "Liset Prisma Skin"
},
"/Lotus/StoreItems/Upgrades/Skins/MeleeDangles/MoonWarfanSugatraMeleeDangle": {
"value": "Renayla Sugatra"
},
"/Lotus/StoreItems/Upgrades/Skins/MeleeDangles/TwitchPrimeMeleeDangle": {
"value": "Spektaka Prime Sugatra"
},
"/Lotus/StoreItems/Upgrades/Skins/Operator/Accessories/AshLevarianTiara": {
"value": "Scoria Diadem"
},
"/Lotus/StoreItems/Upgrades/Skins/Operator/Accessories/BaroHorn": {
"value": "Ki'teer Cornu Diadem"
},
"/Lotus/StoreItems/Upgrades/Skins/Operator/BodySuits/BodySuitNovaEngineer": {
"value": "Masker's Theodolite Crewsuit"
},
"/Lotus/StoreItems/Upgrades/Skins/Operator/Hoods/HoodDuviriOperator": {
"value": "The Stranger's Hood (Operator)"
},
"/Lotus/StoreItems/Upgrades/Skins/Operator/Hoods/HoodNovaEngineer": {
"value": "Masker's Theodolite Crewsuit Hood"
},
"/Lotus/StoreItems/Upgrades/Skins/Operator/Leggings/LeggingsNovaEngineer": {
"value": "Masker's Theodolite Crewsuit Leggings"
},
"/Lotus/StoreItems/Upgrades/Skins/Operator/Sleeves/SleevesNovaEngineer": {
"value": "Masker's Theodolite Crewsuit Sleeves"
},
"/Lotus/StoreItems/Upgrades/Skins/Scarves/AmazonOniSyandana": {
"value": "Stezia Sumbha Syandana"
},
"/Lotus/StoreItems/Upgrades/Skins/Scarves/BaroCape2Scarf": {
"value": "Ki'teer Razza Synadana"
},
"/Lotus/StoreItems/Upgrades/Skins/Scarves/InfMembraneCape": {
"value": "Apis Syandana"
},
"/Lotus/StoreItems/Upgrades/Skins/Scarves/NezhaLeverianCape": {
"value": "Reshantur Cult Syandana"
},
"/Lotus/StoreItems/Upgrades/Skins/Scarves/PrimeOctaviaSyandana": {
"value": "Serenidine Prime Syandana"
},
"/Lotus/StoreItems/Upgrades/Skins/Scarves/PrimeSuratorSyandana": {
"value": "Surator Prime Syandana"
},
"/Lotus/StoreItems/Upgrades/Skins/Scarves/PrimeTwitchScarf": {
"value": "Vistapa Prime Syandana"
},
"/Lotus/StoreItems/Upgrades/Skins/Scarves/PrimeWispSyandana": {
"value": "Entheor Prime Syandana"
},
"/Lotus/StoreItems/Upgrades/Skins/Scarves/SolsticeBaroCape": {
"value": "Wintercress Syandana"
},
"/Lotus/StoreItems/Upgrades/Skins/Scarves/TwitchPrimeScarf": {
"value": "Spektaka Prime Syandana"
},
"/Lotus/StoreItems/Upgrades/Skins/Sentinels/Masks/GaussSentinelMask": {
"value": "Altra Sentinel Mask"
},
"/Lotus/StoreItems/Upgrades/Skins/Sentinels/Tails/GaussSentinelTail": {
"value": "Altra Sentinel Tail"
},
"/Lotus/StoreItems/Upgrades/Skins/Sigils/1999DrippySigil": {
"value": "Drippy Sigil"
},
"/Lotus/StoreItems/Upgrades/Skins/Sigils/TwitchPrimeSigil": {
"value": "Static Reactor Prime Sigil"
},
"/Lotus/StoreItems/Upgrades/Skins/Sigils/WeGameNewYearFreeTigerSigil": {
"value": "Lunar Renewal Tiger Sigil"
},
"/Lotus/StoreItems/Upgrades/Skins/Sigils/WeGameNewYearOxSigil": {
"value": "Lunar Renewal Ox Sigil"
},
"/Lotus/StoreItems/Upgrades/Skins/SummerSolstice/SummerSolsticeTwinGrakatas": {
"value": "Twin Grakatas Towsun Skin"
},
"/Lotus/StoreItems/Upgrades/Skins/VoidTrader/AshLeverianLiosPistol": {
"value": "De Nas Pistol Skin"
},
"/Lotus/StoreItems/Upgrades/Skins/VoidTrader/ElixisNikana": {
"value": "Nikana Elixis Skin"
},
"/Lotus/StoreItems/Upgrades/Skins/Weapons/Rapier/CrpRapierSkin": {
"value": "Rapier Tributaker Skin"
},
"/Lotus/StoreItems/Weapons/Corpus/Melee/CrpTonfa/CrpPrismaTonfa": {
"value": "Prisma Ohma"
},
"/Lotus/StoreItems/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/WraithMacheteWeapon": {
"value": "Machete Wraith"
},
"/Lotus/StoreItems/Weapons/Grineer/Melee/GrnBoomerang/HalikarWraithWeapon": {
"value": "Halikar Wraith"
},
"/Lotus/StoreItems/Weapons/Grineer/Melee/GunBlade/GrnGunBlade/GrnGunblade": {
"value": "Vastilok"
},
"/Lotus/StoreItems/Weapons/Tenno/Archwing/Primary/ArchwingHeavyPistols/Prisma/PrismaArchHeavyPistols": {
"value": "Prisma Dual Decurions"
},
"/Lotus/StoreItems/Weapons/Tenno/LongGuns/PrimeFulmin/PrimeFulmin": {
"value": "Fulmin Prime"
},
"/Lotus/StoreItems/Weapons/Tenno/LongGuns/PrimeTenora/TenoraPrimeWeapon": {
"value": "Tenora Prime"
},
"/Lotus/StoreItems/Weapons/Tenno/Melee/Polearms/PrimeGuandao/PrimeGuandaoWeapon": {
"value": "Guandao Prime"
},
"/Lotus/StoreItems/Weapons/Tenno/Melee/Warfan/PrimeGunsen/PrimeGunsenWeapon": {
"value": "Gunsen Prime"
},
"/Lotus/StoreItems/Weapons/Tenno/Pistols/PrimePandero/PanderoPrimeWeapon": {
"value": "Pandero Prime"
},
"/Lotus/StoreItems/Weapons/Tenno/Pistols/PrimeZakti/PrimeZaktiPistol": {
"value": "Zakti Prime"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarDestroyPropsEasy": {
"value": "Starve the beast",
"desc": "Destroy 75 Containers"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarDestroyPropsHard": {
"value": "Starve the beast",
"desc": "Destroy 300 Containers"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarDestroyPropsMedium": {
"value": "Starve the beast",
"desc": "Destroy 150 Containers"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillEnemiesEasy": {
"value": "Even the odds",
"desc": "Kill 250 Enemies"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillEnemiesMedium": {
"value": "Even the odds",
"desc": "Kill 500 Enemies"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillEnemiesWithAbilitiesHard": {
"value": "Demonstration of power",
"desc": "Kill 500 Enemies with Abilities"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillEnemiesWithAbilitiesMedium": {
"value": "Demonstration of power",
"desc": "Kill 300 Enemies with Abilities"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillEnemiesWithMeleeEasy": {
"value": "By The Blade",
"desc": "Kill 150 Enemies with Melee Weapons"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillEximusEasy": {
"value": "EX-EXIMUS",
"desc": "Kill 10 Eximus"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillEximusHard": {
"value": "EX-EXIMUS",
"desc": "Kill 30 Eximus"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillScaldraEnemiesEasy": {
"value": "Punish Scaldra",
"desc": "Kill 250 Scaldra Troops"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillScaldraEnemiesHard": {
"value": "Punish Scaldra",
"desc": "Kill 500 Scaldra Troops"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillScaldraEnemiesMedium": {
"value": "Punish Scaldra",
"desc": "Kill 350 Scaldra Troops"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillScaldraEnemiesWithAbilitiesEasy": {
"value": "Shock and Awe",
"desc": "Kill 75 Scaldra Troops with Abilities"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillScaldraEnemiesWithAbilitiesHard": {
"value": "Shock and Awe",
"desc": "Kill 250 Scaldra Troops with Abilities"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillScaldraEnemiesWithAbilitiesMedium": {
"value": "Shock and Awe",
"desc": "Kill 150 Scaldra Troops with Abilities"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillScaldraEnemiesWithMeleeEasy": {
"value": "Make it personal",
"desc": "Kill 75 Scaldra Troops with Melee Weapons"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillScaldraEnemiesWithMeleeMedium": {
"value": "Make it personal",
"desc": "Kill 300 Scaldra Troops with Melee Weapons"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillTankHard": {
"value": "Tankless Work",
"desc": "Destroy 1 Tanks"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillTechrotEnemiesEasy": {
"value": "Purge the infection",
"desc": "Kill 250 Techrot"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillTechrotEnemiesHard": {
"value": "Purge the infection",
"desc": "Kill 1,000 Techrot"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillTechrotEnemiesMedium": {
"value": "Purge the infection",
"desc": "Kill 500 Techrot"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillTechrotEnemiesWithAbilitiesMedium": {
"value": "Null and Void",
"desc": "Kill 200 Techrot with Abilities"
},
"/Lotus/Types/Challenges/Calendar1999/CalendarKillTechrotEnemiesWithMeleeMedium": {
"value": "Electronic waste Disposal",
"desc": "Kill 200 Techrot with Melee Weapons"
},
"/Lotus/Types/Gameplay/JadeShadows/Resources/AscensionEventResourceItem": {
"value": "Volatile Motes"
},
"/Lotus/Types/Gameplay/NarmerSorties/ArchonCrystalAmarMythic": {
"value": "Tauforged Crimson Archon Shard"
},
"/Lotus/Types/Gameplay/NarmerSorties/ArchonCrystalBorealMythic": {
"value": "Tauforged Azure Archon Shard"
},
"/Lotus/Types/Gameplay/NarmerSorties/ArchonCrystalNiraMythic": {
"value": "Tauforged Amber Archon Shard"
},
"/Lotus/Types/Gameplay/Tau/Resources/TwelveResourceCurrencyItem": {
"value": "Marks of Valiance"
},
"/Lotus/Types/Gameplay/Venus/Resources/CorpusWidgetAItem": {
"value": "Gyromag Systems"
},
"/Lotus/Types/Gameplay/Venus/Resources/CorpusWidgetBItem": {
"value": "Atmo Systems"
},
"/Lotus/Types/Gameplay/Venus/Resources/CorpusWidgetCItem": {
"value": "Repeller Systems"
},
"/Lotus/Types/Items/MiscItems/WaterFightBucks": {
"value": "Nakak Pearls"
},
"/Lotus/Types/Items/MiscItems/WeaponUtilityUnlocker": {
"value": "Exilus Weapon Adapter"
},
"/Lotus/Types/Items/SyndicateDogTags/UniversalSyndicateDogTag": {
"value": "Universal Medallion"
},
"/Lotus/Types/StoreItems/Packages/AOTZSupporterPackA": {
"value": "Emergence Pack"
},
"/Lotus/Types/StoreItems/Packages/AOTZSupporterPackB": {
"value": "Chrysalith Pack"
},
"/Lotus/Types/StoreItems/Packages/Calendar/CalendarKuvaBundleLarge": {
"value": "6000 x Kuva"
},
"/Lotus/Types/StoreItems/Packages/Calendar/CalendarKuvaBundleSmall": {
"value": "2000 x Kuva"
},
"/Lotus/Types/StoreItems/Packages/Calendar/CalendarVosforPack": {
"value": "Vosfor Cache"
},
"/Lotus/Types/StoreItems/Packages/DeluxeBundles/ProteaDeluxeSkinBundle": {
"value": "Proteus Caladrius Collection"
},
"/Lotus/Types/StoreItems/Packages/DeluxeBundles/TitaniaDeluxeIISkinBundle": {
"value": "Titania Donann Collection"
},
"/Lotus/Types/StoreItems/Packages/FormaPack": {
"value": "Forma 3-Pack"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVClearvoyPrimeSuit": {
"value": "Clearvoy Prime Collection"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVDistillingExtractorPrimeSet": {
"value": "Distilling Extractor Prime"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVEdoPrimeArmorSet": {
"value": "Edo Prime Armor Set"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVGlissandaPrimeArmorSet": {
"value": "Glissanda Prime Armor Set"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVHeimtPrimeSentAccessories": {
"value": "Heimt Prime Sentinel Accessories"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVHildrynPrimeSinglePack": {
"value": "Hildryn Prime Pack"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVLarkspurGravimag": {
"value": "Larkspur Prime"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVMagNovaPrimeDualPack": {
"value": "Mag & Nova Prime Dual Pack"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVMagPrimeSinglePack": {
"value": "Mag Prime Pack"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVNecraloidBundle": {
"value": "Necraloid Bundle"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVNezhaOctaviaPrimeDualPack": {
"value": "Nezha & Octavia Prime Dual Pack"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVNezhaPrimeSinglePack": {
"value": "Nezha Prime Pack"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVOctaviaPrimeSinglePack": {
"value": "Octavia Prime Pack"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVRanshaPrimeArmorSet": {
"value": "Ransha Prime Armor Set"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVTargisPrimeArmorSet": {
"value": "Targis Prime Armor Set"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVWispHildrynPrimeDualPack": {
"value": "Wisp & Hildryn Prime Dual Pack"
},
"/Lotus/Types/StoreItems/Packages/MegaPrimeVault/MPVWispPrimeSinglePack": {
"value": "Wisp Prime Pack"
},
"/Lotus/Types/StoreItems/Packages/PrimeTokenPackA": {
"value": "3 Regal Aya"
},
"/Lotus/Types/StoreItems/Packages/PrimeTokenPackB": {
"value": "7 Regal Aya"
},
"/Lotus/Types/StoreItems/Packages/PrimeTokenPackC": {
"value": "15 Regal Aya"
},
"/Lotus/Types/StoreItems/Packages/StyanaxBundle": {
"value": "Styanax Gallantry Collection"
},
"/Lotus/Types/StoreItems/Packages/StyanaxVoidshellSkinBundle": {
"value": "Styanax Voidshell Collection"
},
"/Lotus/Types/StoreItems/Packages/VeilbreakerCommunityPack": {
"value": "Styanax Gallantry Collection"
},
"/Lotus/Types/StoreItems/Packages/VeilbreakerSupporterPack": {
"value": "Veilbreaker Warrior Pack"
},
"/Lotus/Types/StoreItems/Packages/VeilbreakerVoidshellBundle": {
"value": "Void Adornment Bundle II"
},
"/Lotus/Upgrades/Calendar/AbilityStrength": {
"value": "Power Gains",
"desc": "Increase Ability Strength +25%.\n+25% Ability Strength"
},
"/Lotus/Upgrades/Calendar/Armor": {
"value": "Thick Skin",
"desc": "Gain +250 Armor."
},
"/Lotus/Upgrades/Calendar/AttackAndMovementSpeedOnCritMelee": {
"value": "Hit'N'Split",
"desc": "Critical melee hits have a chance to increase attack and movement speed by 5% for 10sec."
},
"/Lotus/Upgrades/Calendar/BlastEveryXShots": {
"value": "Have A Blast",
"desc": "Every 10th shot adds 10 Blast stacks on hit."
},
"/Lotus/Upgrades/Calendar/CompanionDamage": {
"value": "Got Your Back",
"desc": "Specters and companions gain +250% damage."
},
"/Lotus/Upgrades/Calendar/CompanionsBuffNearbyPlayer": {
"value": "More the Merrier",
"desc": "Non-Tenno Allies within 20m all gain +5% Melee Attack Speed and +20% Fire Rate for each one in range."
},
"/Lotus/Upgrades/Calendar/CompanionsRadiationChance": {
"value": "Friendly Fallout",
"desc": "Attacks from Specters or Companions have a 25% chance to cause Radiation Status."
},
"/Lotus/Upgrades/Calendar/ElectricStatusDamageAndChance": {
"value": "Bottled Lightning",
"desc": "Add 25% Status Damage and Electricity Status Chance to all weapons."
},
"/Lotus/Upgrades/Calendar/EnergyOrbToAbilityRange": {
"value": "Broadened Horizons",
"desc": "On Energy Pickup increase ability range by 10% for 10s."
},
"/Lotus/Upgrades/Calendar/EnergyRestoration": {
"value": "Espresso Shots",
"desc": "Increase energy restoration by 2/s."
},
"/Lotus/Upgrades/Calendar/EnergyWavesOnCombo": {
"value": "Combo Wave",
"desc": "Upon gaining 7x combo multiplier all melee attacks fire off waves of energy."
},
"/Lotus/Upgrades/Calendar/FinisherChancePerComboMultiplier": {
"value": "Combo Killer",
"desc": "Combo Multiplier increases the chance of enemies being susceptible to finishers after a melee hit. 5% per Multiplier Max 65% with Venka Prime."
},
"/Lotus/Upgrades/Calendar/GasChanceToPrimaryAndSecondary": {
"value": "Toxic Shot",
"desc": "Add 25% Gas Status Chance to Primary and Secondary weapons."
},
"/Lotus/Upgrades/Calendar/GenerateOmniOrbsOnWeakKill": {
"value": "Involuntary Transfusion",
"desc": "Weakpoint kills have a 25% chance to generate an Universal Orb."
},
"/Lotus/Upgrades/Calendar/GuidingMissilesChance": {
"value": "Tickshots",
"desc": "Shots gain a 10% chance to fire a seeking projectile for each successful hit. Firing weapons reduces the chance by 5%."
},
"/Lotus/Upgrades/Calendar/HealingEffects": {
"value": "Emergency Medicine",
"desc": "All restoration effects provided by Orb pickups increased by 25%."
},
"/Lotus/Upgrades/Calendar/MagazineCapacity": {
"value": "Heavy Mags",
"desc": "Increase magazine capacity by 25%"
},
"/Lotus/Upgrades/Calendar/MagnetStatusPull": {
"value": "Force Of Attraction",
"desc": "Magnetic Status Effects also pull in enemies within 1m per stack."
},
"/Lotus/Upgrades/Calendar/MagnitizeWithinRangeEveryXCasts": {
"value": "Magnetic Menace",
"desc": "Every 5th ability cast applies a Magnetic Status Effect to an enemy in front of you within 50m."
},
"/Lotus/Upgrades/Calendar/MeleeAttackSpeed": {
"value": "No Quarter",
"desc": "+25% Melee Attack Speed."
},
"/Lotus/Upgrades/Calendar/MeleeCritChance": {
"value": "Practiced Precision",
"desc": "+20% Melee Critical Chance (x2 for Heavy Attacks)."
},
"/Lotus/Upgrades/Calendar/OrbsDuplicateOnPickup": {
"value": "Targeted Medicine",
"desc": "Shoot Health Orbs to pick them up. Health orbs now have 25% chance to duplicate when picked up."
},
"/Lotus/Upgrades/Calendar/OvershieldCap": {
"value": "Harden Up",
"desc": "Increases Overshield cap by 50%. Kills grant 50 shields."
},
"/Lotus/Upgrades/Calendar/PowerStrengthAndEfficiencyPerEnergySpent": {
"value": "Overpower",
"desc": "Casting abilities increases ability strength by 2% and efficiency by -1% per unit of energy used by ability, for 5s."
},
"/Lotus/Upgrades/Calendar/PunchToPrimary": {
"value": "Punchcard",
"desc": "Add +1.5m punch through to primary weapons."
},
"/Lotus/Upgrades/Calendar/RadiationProcOnTakeDamage": {
"value": "Psionic Feedback",
"desc": "On Damaged 10% chance to set off a 250 damage, 5m radius blast of radiation on taking damage."
},
"/Lotus/Upgrades/Calendar/RefundBulletOnStatusProc": {
"value": "Free Shot",
"desc": "Triggering a status proc has a 10% chance to reload the triggering bullet into the clip."
},
"/Lotus/Upgrades/Skins/Armor/SWPiercingEyeShoulderArmor/SWPiercingEyeShoulderArmor": {
"value": "Piercing Eye Shoulder Armor"
},
"/Lotus/Upgrades/Skins/Effects/NarmerEvolvingEphemeraA": {
"value": "Fog of War Ephemera"
},
"/Lotus/Upgrades/Skins/Odalisk/ProteaDeluxeSkin": {
"value": "Protea Caladrius Skin"
},
"/Lotus/Upgrades/Skins/Weapons/LongGuns/CorpusSpearGunSkin": {
"value": "Monitivus Thrown Weapon Skin"
},
"/Lotus/Weapons/Grineer/Melee/GrnSharbola/GrnSharbolaWeapon": {
"value": "Slaytra"
},
"/Lotus/Weapons/Grineer/ThrowingWeapons/GrnVorStickyBomb/GrnVorStickyBomb": {
"value": "Aegrit"
},
"/Lotus/Weapons/Tenno/LongGuns/TnHopliteSpear/TnHopliteSpearGunWeapon": {
"value": "Afentis"
},
"/ee/types/engine/mover": {
"value": "Mover"
},
"/lotus/characters/sentient/hunhow/hunhowpieces/hunhowhipswreckagequest": {
"value": "Hunhow Hips Wreckage Quest"
},
"/lotus/characters/tenno/accessory/scarves/grnbannerscarf/grnbannerscarfitem": {
"value": "Estandarte conquistador"
},
"/lotus/characters/tenno/accessory/scarves/u17intermscarf/u17intermscarfitem": {
"value": "Syandana Udyat"
},
"/lotus/language/alerts/aladcargoevent": {
"value": "Cargamento sospechoso"
},
"/lotus/language/alerts/alertrewardcategoryaura": {
"value": "Aura"
},
"/lotus/language/alerts/alertrewardcategoryblueprint": {
"value": "Plano"
},
"/lotus/language/alerts/alertrewardcategoryitem": {
"value": "Componente"
},
"/lotus/language/alerts/alertrewardcategorymod": {
"value": "Mod"
},
"/lotus/language/alerts/alertrewardcategoryresource": {
"value": "Recurso"
},
"/lotus/language/alerts/alertrewardcategorystance": {
"value": "Mod de guardia"
},
"/lotus/language/alerts/assassinationdesc1": {
"value": "Enemigo VIP localizado"
},
"/lotus/language/alerts/assassinationdesc10": {
"value": "Oficial de inteligencia enemigo localizado"
},
"/lotus/language/alerts/assassinationdesc11": {
"value": "Tropa de élite localizada"
},
"/lotus/language/alerts/assassinationdesc12": {
"value": "Embajador enemigo localizado"
},
"/lotus/language/alerts/assassinationdesc13": {
"value": "Arquetipo robótico enemigo localizado"
},
"/lotus/language/alerts/assassinationdesc14": {
"value": "Oficial enemigo localizado"
},
"/lotus/language/alerts/assassinationdesc15": {
"value": "Fancotirador enemigo localizado"
},
"/lotus/language/alerts/assassinationdesc2": {
"value": "Comandante de nave enemiga localizado"
},
"/lotus/language/alerts/assassinationdesc3": {
"value": "Investigador enemigo localizado"
},
"/lotus/language/alerts/assassinationdesc4": {
"value": "Burócrata enemigo localizado"
},
"/lotus/language/alerts/assassinationdesc5": {
"value": "Oficial de municiones enemigo localizado"
},
"/lotus/language/alerts/assassinationdesc6": {
"value": "Diplomático enemigo localizado"
},
"/lotus/language/alerts/assassinationdesc7": {
"value": "Espía enemigo localizado"
},
"/lotus/language/alerts/assassinationdesc8": {
"value": "Asesino enemigo localizado"
},
"/lotus/language/alerts/assassinationdesc9": {
"value": "Operativo enemigo localizado"
},
"/lotus/language/alerts/capturedesc1": {
"value": "Fugitivo localizado"
},
"/lotus/language/alerts/capturedesc10": {
"value": "Investigador enemigo localizado"
},
"/lotus/language/alerts/capturedesc11": {
"value": "Comerciante de armas enemigo localizado"
},
"/lotus/language/alerts/capturedesc12": {
"value": "Conspirador enemigo localizado"
},
"/lotus/language/alerts/capturedesc13": {
"value": "Cazador de reliquias localizado"
},
"/lotus/language/alerts/capturedesc14": {
"value": "Mensajero Enemigo Localizado"
},
"/lotus/language/alerts/capturedesc15": {
"value": "Capturar e interrogar al operativo enemigo"
},
"/lotus/language/alerts/capturedesc2": {
"value": "Operativo enemigo localizado"
},
"/lotus/language/alerts/capturedesc3": {
"value": "Espía enemigo localizado"
},
"/lotus/language/alerts/capturedesc4": {
"value": "Asesino enemigo localizado"
},
"/lotus/language/alerts/capturedesc5": {
"value": "Diplomático enemigo localizado"
},
"/lotus/language/alerts/capturedesc6": {
"value": "Someter al comandante de la nave enemiga"
},
"/lotus/language/alerts/capturedesc7": {
"value": "Someter al comandante de la instalación"
},
"/lotus/language/alerts/capturedesc8": {
"value": "Comerciante del mercado negro localizado"
},
"/lotus/language/alerts/capturedesc9": {
"value": "Director de centro de investigación localizado"
},
"/lotus/language/alerts/corpuslootship": {
"value": "Corpus Treasury Ship Located"
},
"/lotus/language/alerts/counterinteldesc1": {
"value": "Vulnerabilidad de red detectada"
},
"/lotus/language/alerts/counterinteldesc10": {
"value": "Satélite de comunicaciones enemigas vulnerable"
},
"/lotus/language/alerts/counterinteldesc11": {
"value": "Reconfigurar el sistema de propulsión de la nave enemiga"
},
"/lotus/language/alerts/counterinteldesc12": {
"value": "Reconfigurar el sistema de defensa de la nave enemiga"
},
"/lotus/language/alerts/counterinteldesc13": {
"value": "Reconfigurar los escudos de la nave enemiga"
},