-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaterials.json
3353 lines (3351 loc) · 118 KB
/
materials.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
{
"encoded": [
{
"name": "tg_shutdowndata",
"name_localised": "Massive Energy Surge Analytics",
"grade": 3,
"maximum": 200,
"category" : "Thargoid Data",
"locations": [],
"sources": [
"Thargoid Titan EMP"
],
"engineering": [],
"synthesis": [],
"description": "Information regarding a massive Thargoid energy surge, collected during the period between detonation and impact."
},
{
"name": "tg_interdictiondata",
"name_localised": "Thargoid Interdiction Telemetry",
"grade": 3,
"maximum": 200,
"category" : "Thargoid Data",
"locations": [],
"sources": [
"Thargoid interdiction"
],
"engineering": [],
"synthesis": [],
"description": "Data recorded during a failed attempt to avoid interdiction by a Thargoid present in supercruise."
},
{
"name": "shieldpatternanalysis",
"name_localised": "Aberrant Shield Pattern Analysis",
"grade": 4,
"maximum": 250,
"category" : "Shield Data",
"locations": [
"Mission reward"
],
"sources": [
"Ship scanning (Combat ships, mostly in Boom Systems)"
],
"engineering": [
"Blast Resistant Shield Booster",
"Kinetic Resistant Shield Booster",
"Meta Alloy Hull Reinforcement",
"Thermal Resistant Shield Booster"
],
"synthesis": [],
"description": "Collected during basic scan: frequently pulled from combat oriented vessels.\n\nEnergy shields are formed from complex interlocking fields, the mathematical basis for which is well understood. However, analysis will sometimes indicate a behaviour that doesn't sit properly with this accepted module. This often proves to be spurious data, but underground researchers are looking into other possible causes."
},
{
"name": "compactemissionsdata",
"name_localised": "Abnormal Compact Emissions Data",
"grade": 5,
"maximum": 100,
"category" : "Emission Data",
"locations": [
"Signal sources"
],
"sources": [
"Private data beacons"
],
"engineering": [
"Clean Thrusters",
"Long Range Detailed Surface Scanner",
"Long Range Scanner",
"Long Range Sensors"
],
"synthesis": [],
"description": "Discovered in private data beacons salvaged from deep space. Known to be salvaged from signal sources.\n\nMany systems compress their emissions data as it can quickly fill even massive amounts of storage. Preselected exceptions within the data set are usually kept in a lossless format and these are often of interest to other people and organisations."
},
{
"name": "adaptiveencryptors",
"name_localised": "Adaptive Encryptors Capture",
"grade": 5,
"maximum": 100,
"category" : "Encryption Files",
"locations": [
"Settlement (from surface scan missions)"
],
"sources": [
"Private Data Beacons"
],
"engineering": [
"Fast Scan Detailed Surface Scanner",
"Fast Scan Scanner"
],
"synthesis": [],
"description": "Discovered in private data beacons salvaged from deep space. Known to be salvaged from signal sources.\n\nPolymorphic encryption systems form a state of the art system for data encryption which are considered untraceable. There are rumours that the system has a weakness in state transition with re-encoding, and captures of these changes are eagerly sought after by some people."
},
{
"name": "bulkscandata",
"name_localised": "Anomalous Bulk Scan Data",
"grade": 1,
"maximum": 300,
"category" : "Data Archives",
"locations": [
"Mission reward"
],
"sources": [
"Ship scanning (Transport ships)",
"Hackable Comms Array (Space Installations and Megaships)"
],
"engineering": [
"Engine Focused Power Distributor",
"Long Range Frame Shift Drive Interdictor",
"System Focused Power Distributor",
"Weapon Focused Power Distributor"
],
"synthesis": [],
"description": "Collected during basic scan: frequently pulled from haulage vessels.\n\nData files follow predictable formats, although in larger data sets individual components can be identified which vary from the expected pattern analysis and these can prove very useful to the right people."
},
{
"name": "fsdtelemetry",
"name_localised": "Anomalous FSD Telemetry",
"grade": 2,
"maximum": 250,
"category" : "Wake Scans",
"locations": [
"Mission reward"
],
"sources": [
"High wake scanning"
],
"engineering": [
"FSD Interrupt",
"Long Range Frame Shift Drive Interdictor"
],
"synthesis": [],
"description": "Captured from high energy wakes with a wake scanner.\n\nFSD drives are a relatively new technology and interesting quirks can be discovered from the telemetry of their control software."
},
{
"name": "disruptedwakeechoes",
"name_localised": "Atypical Disrupted Wake Echoes",
"grade": 1,
"maximum": 300,
"category" : "Wake Scans",
"locations": [
"Mission reward (usually in Boom system states)"
],
"sources": [
"High wake scanning"
],
"engineering": [
"Increased Range Frame Shift Drive",
"Long Range Frame Shift Drive Interdictor"
],
"synthesis": [],
"description": "Captured from high energy wakes with a wake scanner.\n\nData recorded from a disrupted frame shift wake usually follows a familiar pattern. Sometimes these show abnormalities which often makes the data more valuable."
},
{
"name": "encryptionarchives",
"name_localised": "Atypical Encryption Archives",
"grade": 4,
"maximum": 150,
"category" : "Encryption Files",
"locations": [
"Surface Installation (from surface scan missions)"
],
"sources": [
"Private Data Beacons"
],
"engineering": [
"Fast Scan Detailed Surface Scanner",
"Fast Scan Scanner"
],
"synthesis": [],
"description": "Discovered in private data beacons salvaged from deep space.\n\nThe nature of encrypted data makes it difficult to predict its contents, however certain forms of data have recognisable structures even when encrypted. This can then be used to break into the data and as such is highly prized in some quarters."
},
{
"name": "scandatabanks",
"name_localised": "Classified Scan Databanks",
"grade": 3,
"maximum": 200,
"category" : "Data Archives",
"locations": [
"Surface Installation"
],
"sources": [
"Hackable Data Transmitter (Space Installations)",
"Ship scanning (trading ships)"
],
"engineering": [
"Wide Angle Detailed Surface Scanner",
"Wide Angle Scanner",
"Wide Angle Sensors",
"Engineer Ram Tah"
],
"synthesis": [],
"description": "Collected during basic scan: frequently pulled from haulage vessels.\n\nA popular method for hiding sensitive data is to embed it within innocuous information. Such methods are usually quite sophisticated, but occasionally will be found by chance and can be processed by those with the right skills and equipment."
},
{
"name": "classifiedscandata",
"name_localised": "Classified Scan Fragment",
"grade": 5,
"maximum": 100,
"category" : "Data Archives",
"locations": [
"Surface Installation",
"Mission reward (usually in Boom system states)"
],
"sources": [
"Ship scanning (military and authority ships)",
"Hackable Data Transmitter and Hackable Comms Array (space Installations)"
],
"engineering": [
"Wide Angle Detailed Surface Scanner",
"Wide Angle Scanner",
"Wide Angle Sensors",
"Expanded Capture Arc Frame Shift Drive Interdictor"
],
"synthesis": [],
"description": "Captured from settlement data point networks.\n\nSome sensor systems will automatically squirt data batches when they encounter certain contact profiles. The nature of these profiles is usually kept a secret, but there is a demand in certain quarters for any captures of this data."
},
{
"name": "industrialfirmware",
"name_localised": "Cracked Industrial Firmware",
"grade": 3,
"maximum": 200,
"category" : "Encoded Firmware",
"locations": [
"Mission reward",
"Surface Installation"
],
"sources": [],
"engineering": [
"Charge Enhanced Power Distributor",
"Dirty Thrusters",
"Double Shot Weapon",
"High Charge Capacity Power Distributor",
"Long Range Weapon",
"Short Range Weapon",
"Specialised Shield Cell Bank"
],
"synthesis": [],
"description": "Captured from settlement data point networks. Known to be salvaged from signal sources.\n\nControl software for industrial hardware interfaces normally follows strict operational and installation guidelines. Cracked versions of these can be found, but are often kept secret as such industrial espionage is punished severely, making these cracks quite valuable."
},
{
"name": "dataminedwake",
"name_localised": "Datamined Wake Exceptions",
"grade": 5,
"maximum": 100,
"category" : "Wake Scans",
"locations": [
"Private Data Beacons",
"Mission reward",
"Encoded Emissions"
],
"sources": [
"High wake scanning"
],
"engineering": [
"Increased Range Frame Shift Drive"
],
"synthesis": [],
"description": "Captured from high energy wakes with a wake scanner.\n\nMany automated wake scanner systems will generate an exceptions log when they encounter data that doesn't match the pre-programmed profiles. Most of these turn out to be junk, but there are rumours that something more insidious has been discovered."
},
{
"name": "decodedemissiondata",
"name_localised": "Decoded Emission Data",
"grade": 4,
"maximum": 250,
"category" : "Emission Data ",
"locations": [
"Mission reward"
],
"sources": [
"Ship scanning (combat ships)"
],
"engineering": [
"Clean Thrusters",
"Long Range Detailed Surface Scanner",
"Long Range Scanner",
"Long Range Sensors",
"Tiana Fortune"
],
"synthesis": [],
"description": "Collected during basic scan: frequently pulled from combat oriented vessels. Known to be salvaged from signal sources.\n\nEmission data takes a variety of forms and is often merged into wider datasets to search for anomalies and other stand out data. This tends to be compressed in decoded packages to maintain a separate copy of anomalous results."
},
{
"name": "shieldcyclerecordings",
"name_localised": "Distorted Shield Cycle Recordings",
"grade": 1,
"maximum": 300,
"category" : "Shield Data",
"locations": [
"Mission reward"
],
"sources": [
"Hackable Comms Array (Space Installations and Megaships)",
"Ship scanning (trading ships)"
],
"engineering": [
"Enhanced Low Power Shield Generator",
"Heavy Duty Shield Booster",
"Kinetic Resistant Shield Generator",
"Screening Shell",
"Thermal Resistant Shield Generator"
],
"synthesis": [],
"description": "Collected during basic scan: frequently pulled from haulage vessels.\n\nData from a scan of a shield system over a given time period is a normally reliable data set, as long as the input variables are correctly compensated for. In rare cases this data doesn't fit probable patterns and is of keen interest to certain individuals."
},
{
"name": "encodedscandata",
"name_localised": "Divergent Scan Data",
"grade": 4,
"maximum": 250,
"category" : "Data Archives",
"locations": [
"Mission reward",
"Surface Installation"
],
"sources": [
"Hackable Comms Array (Space Installations and Megaships)"
],
"engineering": [
"Expanded Capture Arc FSD Interdictor",
"Wide Angle Detailed Surface Scanner",
"Wide Angle Scanner",
"Wide Angle Sensors"
],
"synthesis": [],
"description": "Captured from settlement data point networks.\n\nScan data usually forms a large data set, with only a small quantity of pertinent information. For the most part these are easily analysed, but some sensor data has unusual properties and while this is often caused by a malfunction can yield some interesting results."
},
{
"name": "hyperspacetrajectories",
"name_localised": "Eccentric Hyperspace Trajectories",
"grade": 4,
"maximum": 250,
"category" : "Wake Scans",
"locations": [],
"sources": [
"High wake scanning"
],
"engineering": [
"Increased Range Frame Shift Drive"
],
"synthesis": [],
"description": "Captured from high energy wakes with a wake scanner.\n\nHyperspace trajectories follow predictable paths through higher dimensional space, although there are sometimes strange results in the data not accounted for in current theory."
},
{
"name": "scrambledemissiondata",
"name_localised": "Exceptional Scrambled Emission Data",
"grade": 1,
"maximum": 300,
"category" : "Emission Data",
"locations": [
"Private Data Beacons",
"Satellites",
"Mission reward"
],
"sources": [
"Ship scanning"
],
"engineering": [
"Efficient Weapon",
"Specialised Shield Cell Bank"
],
"synthesis": [],
"description": "Used by factions as a reward for mission contracts. Known to be salvaged from signal sources.\n\nEven with scrambled data it is possible to generate a high level analysis through pattern recognition and data sequencing. In some cases unexpected data clusters can be identified and are of interest to some people with the right expertise to use the data."
},
{
"name": "guardian_moduleblueprint",
"name_localised": "Guardian Module Blueprint Fragment",
"grade": 5,
"maximum": 100,
"category" : "Guardian Data",
"locations": [
"Ancient Data Terminal"
],
"sources": [],
"engineering": [],
"synthesis": [
"Guardian Frame Shift Drive Booster",
"Guardian Hull Reinforcement Package",
"Guardian Hybrid Power Distributor",
"Guardian Hybrid Power Plant",
"Guardian Module Reinforcement Package",
"Guardian Shield Reinforcement Package"
],
"description": "A fragmentary Guardian schematic relating to module technology."
},
{
"name": "guardian_vesselblueprint",
"name_localised": "Guardian Vessel Blueprint Fragment",
"grade": 5,
"maximum": 100,
"category" : "Guardian Data",
"locations": [
"Ancient Data Terminal"
],
"sources": [],
"engineering": [
"XG7 Trident",
"XG8 Javelin",
"XG9 Lance"
],
"synthesis": [],
"description": "A fragmentary Guardian schematic relating to starship technology."
},
{
"name": "guardian_weaponblueprint",
"name_localised": "Guardian Weapon Blueprint Fragment",
"grade": 5,
"maximum": 100,
"category" : "Guardian Data",
"locations": [
"Ancient Data Terminal"
],
"sources": [],
"engineering": [
"Guardian Gauss Cannon (Fixed, Class 1)",
"Guardian Gauss Cannon (Fixed, Class 2)",
"Guardian Plasma Charger (Fixed, Class 1)",
"Guardian Plasma Charger (Fixed, Class 2)",
"Guardian Plasma Charger (Fixed, Class 3)",
"Guardian Plasma Charger (Turreted, Class 1)",
"Guardian Plasma Charger (Turreted, Class 2)",
"Guardian Plasma Charger (Turreted, Class 3)",
"Guardian Shard Cannon (Fixed, Class 1)",
"Guardian Shard Cannon (Fixed, Class 2)",
"Guardian Shard Cannon (Fixed, Class 3)",
"Guardian Shard Cannon (Turreted, Class 1)",
"Guardian Shard Cannon (Turreted, Class 2)",
"Guardian Shard Cannon (Turreted, Class 3)"
],
"synthesis": [],
"description": "A fragmentary Guardian schematic relating to military technology."
},
{
"name": "shieldsoakanalysis",
"name_localised": "Inconsistent Shield Soak Analysis",
"grade": 2,
"maximum": 250,
"category" : "Shield Data",
"locations": [
"Mission reward (usually in Boom system states)",
"Hackable Comms Array (Space Installations and Megaships)"
],
"sources": [
"Ship scanning (trading ships)"
],
"engineering": [
"Enhanced Low Power Shield Generator",
"Heavy Duty Shield Booster",
"Kinetic Resistant Shield Generator",
"Thermal Resistant Shield Generator"
],
"synthesis": [],
"description": "Collected during basic scan: frequently pulled from haulage vessels.\n\nAccumulated data of shield responses to impacts rarely reveals anything unusual in anything except experimental models. This isn't always the case and analysing irregularities often reveals useful data about the shields."
},
{
"name": "archivedemissiondata",
"name_localised": "Irregular Emission Data",
"grade": 2,
"maximum": 250,
"category" : "Emission Data",
"locations": [
"Private Data Beacons",
"Mission reward (usually at Military or Agriculture Surface Ports)"
],
"sources": [],
"engineering": [
"Efficient Weapon",
"Low emissions Power Plant"
],
"synthesis": [],
"description": "Used by factions as a reward for mission contracts. Known to be salvaged from signal sources.\n\nEmission data mostly contains identifiable readings, but anomalies often crop up. While these are often caused by system faults they can reveal interesting data or even weaknesses in sensor and stealth technology."
},
{
"name": "consumerfirmware",
"name_localised": "Modified Consumer Firmware",
"grade": 2,
"maximum": 250,
"category" : "Encoded Firmware",
"locations": [
"Surface Installation",
"Satellites",
"Private Data Beacons",
"Hackable Comms Array (Space Installations and Megaships)"
],
"sources": [],
"engineering": [
"Charge Enhanced Power Distributor",
"Clean Thrusters",
"Dirty Thrusters",
"High Charge Capacity Power Distributor",
"Kinetic Resistant Shield Generator",
"Long Range Weapon",
"Rapid Fire Weapon",
"Screening Shell",
"Short Range Weapon"
],
"synthesis": [],
"description": "Used by factions as a reward for mission contracts. Known to be salvaged from signal sources. Known to be found in small settlement data point networks.\n\nControl software for consumer level devices typically follows the manufacturer's specification, unless it has been modified and these changes can be used by other interested parties."
},
{
"name": "embeddedfirmware",
"name_localised": "Modified Embedded Firmware",
"grade": 5,
"maximum": 100,
"category" : "Encoded Firmware",
"locations": [
"Surface Installation (Medium and High Security)",
"Mission reward",
"Hackable Data Transmitter and Hackable Comms Array (space Installations)"
],
"sources": [],
"engineering": [
"Double Shot Weapon",
"Overcharged Weapon"
],
"synthesis": [],
"description": "Captured from settlement data point networks.\n\nEmbedded systems typically require specific firmware for their operation. There is a black market for modifications to the base firmware, often for performance tuning or other reasons."
},
{
"name": "symmetrickeys",
"name_localised": "Open Symmetric Keys",
"grade": 3,
"maximum": 200,
"category" : "Encryption Files",
"locations": [
"Surface Installation",
"Private Data Beacons",
"Satellites",
"Mission reward"
],
"sources": [],
"engineering": [
"Fast Scan Detailed Surface Scanner",
"Fast Scan Scanner",
"Long Range Frame Shift Drive Interdictor"
],
"synthesis": [],
"description": "Captured from settlement data point networks. Known to be salvaged from signal sources.\n\nSymmetric keys provide access controls for encrypted data, often on a ship, or even station wide basis. Capturing these provides the owner (with the right skills and equipment) a valuable access tool."
},
{
"name": "ancientbiologicaldata",
"name_localised": "Pattern Alpha Obelisk Data",
"grade": 3,
"maximum": 200,
"category" : "Guardian Data",
"locations": [
"Ancient Ruins",
"Guardian Structure"
],
"sources": [],
"engineering": [
"Guardian Hybrid Power Distributor"
],
"synthesis": [],
"description": "Data captured from obelisks found at ancient ruins. This data pattern is distinctive and has been designated as 'Pattern Alpha'. There are many theories as to what this data might represent.\nUsually contains data about biology."
},
{
"name": "ancientculturaldata",
"name_localised": "Pattern Beta Obelisk Data",
"grade": 2,
"maximum": 250,
"category" : "Guardian Data",
"locations": [
"Ancient Ruins",
"Guardian Structure"
],
"sources": [],
"engineering": [
"Guardian Hull Reinforcement Package",
"XG7 Trident"
],
"synthesis": [],
"description": "Data captured from obelisks found at ancient ruins. This data pattern is distinctive and has been designated as 'Pattern Beta'. The meaning of this pattern has not yet been determined.\nUsually contains data about culture."
},
{
"name": "ancientlanguagedata",
"name_localised": "Pattern Delta Obelisk Data",
"grade": 4,
"maximum": 150,
"category" : "Guardian Data",
"locations": [
"Ancient Ruins",
"Guardian Structure"
],
"sources": [],
"engineering": [
"Guardian Shield Reinforcement Package"
],
"synthesis": [],
"description": "Captured from obelisks found at ancient ruins, this data pattern is distinctive, and has been designated as 'Pattern Delta'. The meaning of this data type is not yet known.\nUsually contains data about language."
},
{
"name": "ancienttechnologicaldata",
"name_localised": "Pattern Epsilon Obelisk Data",
"grade": 4,
"maximum": 150,
"category" : "Guardian Data",
"locations": [
"Ancient Ruins",
"Guardian Structure"
],
"sources": [],
"engineering": [
"Guardian Hybrid Power Plant",
"Guardian Module Reinforcement Package",
"XG7 Trident",
"XG8 Javelin",
"XG9 Lance"
],
"synthesis": [],
"description": "Downloaded from obelisks found at ancient ruins, this data pattern is distinctive, and has been designated as 'Pattern Epsilon'. As yet, the pattern's meaning is unknown.\nUsually contains data about technology."
},
{
"name": "ancienthistoricaldata",
"name_localised": "Pattern Gamma Obelisk Data",
"grade": 1,
"maximum": 300,
"category" : "Guardian Data",
"locations": [
"Ancient Ruins",
"Guardian Structure"
],
"sources": [],
"engineering": [
"Guardian Hull Reinforcement Package"
],
"synthesis": [],
"description": "Unknown data extracted from obelisks found at ancient ruins, this data pattern is distinctive, and has been designated as 'Pattern Gamma'. The secrets of this information have yet to be unlocked.\nUsually contains data about history."
},
{
"name": "shieldfrequencydata",
"name_localised": "Peculiar Shield Frequency Data",
"grade": 5,
"maximum": 100,
"category" : "Shield Data",
"locations": [
"Mission reward"
],
"sources": [
"Ship scanning"
],
"engineering": [
"Regeneration Sequence"
],
"synthesis": [],
"description": "Collected during basic scan: frequently pulled from combat oriented vessels.\n\nScanned data from shield frequency changes and patterns rarely generate anything out of the ordinary, but when they do they can be of keen interest to various people."
},
{
"name": "securityfirmware",
"name_localised": "Security Firmware Patch",
"grade": 4,
"maximum": 150,
"category" : "Encoded Firmware",
"locations": [
"Surface Installation",
"Mission reward (Boom and Retreat system states)",
"Hackable Data Transmitter (Space Installations)"
],
"sources": [],
"engineering": [
"Double Shot Weapon",
"Drag Drives"
],
"synthesis": [],
"description": "Captured from settlement data point networks.\n\nHigh grade firmware for secure hardware interfaces have to use their manufacturer's authorised updates. These can be expensive and sometimes custom built patches are used instead. These provide the components necessary to manipulate the firmware in unauthorised ways."
},
{
"name": "tg_shipflightdata",
"name_localised": "Ship Flight Data",
"grade": 3,
"maximum": 200,
"category" : "Thargoid Data",
"locations": [],
"sources": [
"Thargoid Interceptor",
"Thargoid Scout"
],
"engineering": [],
"synthesis": [
"AX Explosive Munitions"
],
"description": "Data collected from a detailed scan of a Thargoid vessel using a Xeno Scanner. This data contains information relating to the flight mechanics, flight systems and combat manoeuvres of a Thargoid ship. Research into this data is currently ongoing, with many engineers speculating that the information could hold the key to developing anti-Thargoid strategies and improve human technology to counter the threat posed by this race. Therefore, Thargoid related data is highly sought after for scientific research or can be used in the synthesis of various anti-Thargoid ammunition types."
},
{
"name": "tg_shipsystemsdata",
"name_localised": "Ship Systems Data",
"grade": 3,
"maximum": 200,
"category" : "Thargoid Data",
"locations": [],
"sources": [
"Thargoid Interceptor",
"Thargoid Scout"
],
"engineering": [],
"synthesis": [],
"description": "Data collected from a detailed scan of a Thargoid vessel using a Xeno Scanner. This data contains information relating to the internal systems of a Thargoid ship. Research into this data is currently ongoing, with many engineers speculating that the information could hold the key to developing anti-Thargoid strategies and improve human technology to counter the threat posed by this race. Therefore, Thargoid related data is highly sought after for scientific research or can be used in the synthesis of various anti-Thargoid ammunition types."
},
{
"name": "legacyfirmware",
"name_localised": "Specialised Legacy Firmware",
"grade": 1,
"maximum": 300,
"category" : "Encoded Firmware",
"locations": [
"Surface Installation",
"Satellites",
"Private Data Beacons",
"Mission reward"
],
"sources": [],
"engineering": [
"Charge Enhanced Power Distributor",
"Clean Thrusters",
"Dirty Thrusters",
"High Charge Capacity Power Distributor",
"Rapid Fire Weapon",
"Specialised Shield Cell Bank"
],
"synthesis": [],
"description": "Used by factions as a reward for mission contracts. Known to be salvaged from signal sources. Known to be found in small settlement data point networks.\n\nSpecialised legacy firmware is the control software from earlier versions of the technology. These can be rare finds and have some uses in developing new versions with backwards compatibility."
},
{
"name": "wakesolutions",
"name_localised": "Strange Wake Solutions",
"grade": 3,
"maximum": 200,
"category" : "Wake Scans ",
"locations": [
"Mission reward (Boom system states)"
],
"sources": [
"High wake scanning"
],
"engineering": [
"Expanded Capture Arc Frame Shift Drive Interdictor",
"Increased Range Frame Shift Drive"
],
"synthesis": [],
"description": "Captured from high energy wakes with a wake scanner.\n\nData for frame shift wake destination solutions usually follows a predictable pattern. The technology is still new enough that oddities can be found."
},
{
"name": "encryptioncodes",
"name_localised": "Tagged Encryption Codes",
"grade": 2,
"maximum": 250,
"category" : "Encryption Files",
"locations": [
"Surface Installation",
"Satellites",
"Private Data Beacons",
"Mission reward (Boom system states)",
"Hackable Data Transmitter (Space Installations)"
],
"sources": [],
"engineering": [
"Expanded Capture Arc Frame Shift Drive Interdictor",
"Long Range Frame Shift Drive Interdictor"
],
"synthesis": [],
"description": "Captured from settlement data point networks. Known to be salvaged from signal sources.\n\nEncryption codes are typically very sensitive data because of their use in decrypting confidential information. In the right circumstances these can be captured remotely and as such are highly sought after by certain people."
},
{
"name": "tg_compositiondata",
"name_localised": "Thargoid Material Composition Data",
"grade": 3,
"maximum": 200,
"category" : "Thargoid Data",
"locations": [
"Thargoid Surface Site"
],
"sources": [],
"engineering": [],
"synthesis": [],
"description": "Data collected during a basic scan of Thargoid structures."
},
{
"name": "tg_residuedata",
"name_localised": "Thargoid Residue Data",
"grade": 4,
"maximum": 150,
"category" : "Thargoid Data",
"locations": [
"Thargoid Surface Site"
],
"sources": [],
"engineering": [],
"synthesis": [],
"description": "Data collected during a basic scan of Thargoid structures."
},
{
"name": "unknownshipsignature",
"name_localised": "Thargoid Ship Signature",
"grade": 3,
"maximum": 200,
"category" : "",
"locations": [],
"sources": [
"Thargoid Interceptor",
"Thargoid Scout"
],
"engineering": [
"Thargoid Data"
],
"synthesis": [],
"description": "The ship signature of a Thargoid Interceptor."
},
{
"name": "tg_structuraldata",
"name_localised": "Thargoid Structural Data",
"grade": 2,
"maximum": 250,
"category" : "Thargoid Data",
"locations": [
"Thargoid Surface Site"
],
"sources": [],
"engineering": [],
"synthesis": [],
"description": "Data collected during a basic scan of Thargoid structures."
},
{
"name": "unknownwakedata",
"name_localised": "Thargoid Wake Data",
"grade": 4,
"maximum": 150,
"category" : "Thargoid Data",
"locations": [],
"sources": [
"High wake scanning (Thargoid Interceptor)"
],
"engineering": [],
"synthesis": [],
"description": "Wake data of a Thargoid Interceptor."
},
{
"name": "emissiondata",
"name_localised": "Unexpected Emission Data",
"grade": 3,
"maximum": 200,
"category" : "Emission Data",
"locations": [
"Private Data Beacons"
],
"sources": [
"Ship scanning (combat ships)"
],
"engineering": [
"Clean Thrusters",
"Efficient Weapon",
"Long Range Detailed Surface Scanner",
"Long Range Scanner",
"Long Range Sensors"
],
"synthesis": [],
"description": "Collected during basic scan: frequently pulled from combat oriented vessels. Known to be salvaged from signal sources.\n\nMost users prefer their accumulated emission data to conform to the expected parameters. Sometimes strange distortions or readings are encountered and these can prove most illuminating."
},
{
"name": "scanarchives",
"name_localised": "Unidentified Scan Archives",
"grade": 2,
"maximum": 250,
"category" : "Data Archives",
"locations": [
"Hackable Comms Array (Space Installations and Megaships)"
],
"sources": [
"Ship scanning (trading ships)"
],
"engineering": [
"Engine Focused Power Distributor",
"Force Block",
"Long Range FSD Interdictor",
"System Focused Power Distributor",
"Weapon Focused Power Distributor"
],
"synthesis": [],
"description": "Collected during basic scan: frequently pulled from haulage vessels.\n\nMost scanners keep a log of their readings and that typically fits within the performance profile for the instrumentation and is tagged by identification heuristics. Sometimes scan data isn't tagged and so becomes of interest to those investigating various anomalies."
},
{
"name": "shielddensityreports",
"name_localised": "Untypical Shield Scans",
"grade": 3,
"maximum": 200,
"category" : "Shield Data",
"locations": [
"Hackable Comms Array (Space Installations and Megaships)"
],
"sources": [
"Ship scanning (combat ships)"
],
"engineering": [
"Blast Resistant Shield Booster",
"Enhanced Low Power Shield Generator",
"Heavy Duty Shield Booster",
"Kinetic Resistant Shield Booster",
"Kinetic Resistant Shield Generator",
"Thermal Resistant Shield Booster",
"Thermal Resistant Shield Generator"
],
"synthesis": [],
"description": "Collected during basic scan: frequently pulled from combat oriented vessels.\n\nShield technology has been established for centuries, so finding shield behaviour that doesn't match the expected results can be of great interest to various individuals and organisations."
},
{
"name": "encryptedfiles",
"name_localised": "Unusual Encrypted Files",
"grade": 1,
"maximum": 300,
"category" : "Encryption Files",
"locations": [
"Surface Installation",
"Satellites",
"Private Data Beacons",
"Mission reward (Boom system states)",
"Hackable Comms Array (Space Installations and Megaships)"
],
"sources": [],
"engineering": [
"Expanded Capture Arc FSD Interdictor",
"Long Range FSD Interdictor"
],
"synthesis": [],
"description": "Captured from settlement data point networks. Known to be salvaged from signal sources.\n\nData files are often encrypted, on occasion a novel method of encryption can be encountered which is usefull elsewhere."
}
],
"manufactured": [
{
"name": "tg_abrasion03",
"name_localised": "Hardened Surface Fragments",
"grade": 1,
"maximum": 300,
"category" : "Thargoid Components",
"locations": [],
"sources": [
"Thargoid Titan"
],
"engineering": [],
"synthesis": [],
"description": "An abrasion sample taken from the upper surface of a Thargoid Titan. This material is extremely strong and resistant to multiple types of damage."
},
{
"name": "tg_abrasion01",
"name_localised": "Heat Exposure Specimen",
"grade": 5,
"maximum": 100,
"category" : "Thargoid Components",
"locations": [],
"sources": [
"Thargoid Titan"
],
"engineering": [],
"synthesis": [],
"description": "An abrasion sample taken from near a Thargoid Titan heat vent. The material appears to have been affected by common fluctuations in temperature, and shows evidence of microbiological life."
},
{
"name": "tg_abrasion02",
"name_localised": "Phasing Membrane Residue",
"grade": 3,
"maximum": 200,
"category" : "Thargoid Components",
"locations": [],
"sources": [
"Thargoid Titan"
],
"engineering": [],
"synthesis": [],
"description": "An abrasion sample taken from near a visible membrane of a Thargoid Titan. The material is viscous and oddly inert once separated from its place of origin."
},
{
"name": "tg_causticshard",
"name_localised": "Caustic Shard",
"grade": 2,
"maximum": 250,
"category" : "Thargoid Components",
"locations": [],
"sources": [
"Thargoid interdiction"
],
"engineering": [],
"synthesis": [
"Caustic Sinks"
],
"description": "A single shard of crystallised caustic gas"
},
{
"name": "tg_causticgeneratorparts",
"name_localised": "Corrosive Mechanisms",
"grade": 3,
"maximum": 200,
"category" : "Thargoid Components",
"locations": [],
"sources": [
"Thargoid Caustic Generators"
],
"engineering": [],
"synthesis": [
"Caustic Sinks"
],
"description": "Components recovered from the debris of a destroyed caustic generator. They are reactive to heat sources in close proximity."
},
{
"name": "basicconductors",