-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
master_part_list.json
1682 lines (1682 loc) · 94.1 KB
/
master_part_list.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
[
{
"file": "First_Class_Passenger",
"categoryname": "Passengers",
"price": "0",
"mass": "4",
"volume": "100",
"description": "@cargo/first_class_passenger.image@If you are taking first class passengers around, they had better have all the amenities one expects."
},
{
"file": "Business_Class_Passenger",
"categoryname": "Passengers",
"price": "0",
"mass": "3",
"volume": "50",
"description": "@cargo/business_class_passenger.image@With a laptop and a wide rear, the business class passenger enjoys some of the room of the first class passenger."
},
{
"file": "Frozen_Colonist",
"categoryname": "Passengers/Economy",
"price": "0",
"mass": "1",
"volume": "3",
"description": "@cargo/frozen_colonist.image@Polite, space-efficient, doesn't try to back-seat pilot, doesn't care how long it takes to get there. Unfortunately, being technically, if only temporarily, deceased - not much for conversation."
},
{
"file": "Hitchhiker",
"categoryname": "Passengers/Economy",
"price": "0",
"mass": "0.4",
"volume": "6",
"description": "@cargo/steerage_class@Always brings a towel of his/her own."
},
{
"file": "Ration_Mealpacks",
"categoryname": "Natural_Products/Food/Confed",
"price": "100",
"mass": "1.2",
"volume": "1",
"description": "@cargo/ration_mealpacks.image@Owing to the generally high danger of radiation deterioration, most foods consumed in space by humans are mealpacks. These compact mealpacks contain energy bars and an energy liquid drink. Highly nutritious, and absolutely tasteless to the eye and palate."
},
{
"file": "Standard_Mealpacks",
"categoryname": "Natural_Products/Food/Confed",
"price": "100",
"mass": "1.2",
"volume": "1",
"description": "@cargo/standard_mealpacks.image@Standard Mealpacks are designed for regular people who want a halfway decent meal without a lot of trouble. Self-heating, these mealpacks are hermetically sealed packs of cheap and satisfying foodstuffs. A great alternative to the staple foods on many developed worlds: vat grown meats, algae sludge and tofu bars."
},
{
"file": "Luxury_Mealpacks",
"categoryname": "Natural_Products/Food/Confed",
"price": "180",
"mass": "0.8",
"volume": "1",
"description": "@cargo/luxury_mealpacks.image@Oriented towards the human digestive system, such packs typically contain actual game meat, exotic fruits, vegetables and other rarest of rare foods. Despite repeated denials, rumours persist that meat from other sentient beings are included for the palates of those most decadent of the rich and famous."
},
{
"file": "Filtered_Water",
"categoryname": "Natural_Products/Food/Confed",
"price": "40",
"mass": "10",
"volume": "10",
"description": "@cargo/fresh_water.image@The main building block of life. Fresh water is required by most animalistic species to maintain bodily function. A body will normally use water to carry nutrients to all cells of the body, and remove toxic wastes to avoid poisoning and death."
},
{
"file": "Filtered_Water",
"categoryname": "Natural_Products/Food/Aera",
"price": "40",
"mass": "3",
"volume": "3",
"description": "@cargo/fresh_water.image@The main building block of life. Fresh water is required by most animalistic species to maintain bodily function. A body will normally use water to carry nutrients to all cells of the body, and remove toxic wastes to avoid poisoning and death."
},
{
"file": "Aera_Ration",
"categoryname": "Natural_Products/Food/Aera",
"price": "40",
"mass": "1.4",
"volume": "1",
"description": "@cargo/aera_ration.image@Containing utilitarian dehydrated meal bars with jerky for dessert, the Aera ration is human edible, but prolonged human consumption will result in eventual sickness and death due to alkaloid content."
},
{
"file": "Jhurlon",
"categoryname": "Natural_Products/Food/Aera",
"price": "140",
"mass": "1.05",
"volume": "1",
"description": "@cargo/jhurlon.image@A native of the Bzbr world, the Jhurlon most closely resembles a boulder sized land dwelling abalone. While well protected against native predators, modern technology has made cutting through their shell somewhat easier."
},
{
"file": "Salted_Thok",
"categoryname": "Natural_Products/Food/Aera",
"price": "130",
"mass": "1.2",
"volume": "1",
"description": "@cargo/salted_thok.image@Though the Aera destroyed their jungle forests, the seas fared better, and continue to produce this tasty fish-like creature."
},
{
"file": "Sustipack",
"categoryname": "Natural_Products/Food/Rlaan",
"price": "140",
"mass": "0.8",
"volume": "1",
"description": "@cargo/sustipacks.image@Containing the bare minimum in ammonia based concentrates and a carb syrup, these packs provide a Rlaan with absolute minimum sustenance. Strangely enough, these packs aid Rlaan fitness, as they will make every effort to avoid eating one."
},
{
"file": "Nutripack",
"categoryname": "Natural_Products/Food/Rlaan",
"price": "150",
"mass": "0.9",
"volume": "1",
"description": "@cargo/nutripacks.image@Containing a protein brick, carb glop and gels in ammonia solutions stored at such temperatures that ammonia is a liquid. An unprepared human would have a fatal experience opening, let alone eating, this pack."
},
{
"file": "Ultrapack",
"categoryname": "Natural_Products/Food/Rlaan",
"price": "40",
"mass": "0.9",
"volume": "1",
"description": "@cargo/ultrapacks.image@These Rlaan foodpacks are factory processed and hermetically sealed biofoods somewhat more tasteworthy to the Rlaan palate. Typically used as an addition to Nutripacks."
},
{
"file": "Coffee",
"categoryname": "Natural_Products/Food/Generic",
"price": "140",
"mass": "0.75",
"volume": "1",
"description": "@cargo/coffee.image@Generation upon generation of addicts have made the production of coffee one of the largest industries in known space."
},
{
"file": "Animal_Products",
"categoryname": "Natural_Products/Food/Generic",
"price": "110",
"mass": "1",
"volume": "1",
"description": "@cargo/animal_products.image@Typically diary, eggs, caviar and other products of various animal internal organs, they remain a food source of high nutritional value for all species, and some diners derive a twisted pleasure from eating foods originating from such a source."
},
{
"file": "Grains",
"categoryname": "Natural_Products/Food/Generic",
"price": "70",
"mass": "6",
"volume": "10",
"description": "@cargo/grains.image@The edible grass seeds, grains, and the carbohydrates garnered from them, are a pillar of an omnivorous diet. When fermented properly, they become the pillars of a liquid diet."
},
{
"file": "Seafood",
"categoryname": "Natural_Products/Food/Generic",
"price": "115",
"mass": "1",
"volume": "1",
"description": "@cargo/seafood.image@This product range includes water dwelling creatures and their by-products. Typically it includes fish, crustaceans, and other such creatures from which all species can obtain nutritional value."
},
{
"file": "Meats",
"categoryname": "Natural_Products/Food/Generic",
"price": "110",
"mass": "1.1",
"volume": "1",
"description": "@cargo/animal_meat.image@Although no food movement has ever managed to persuade diners away from their omnivorous roots, as range animals are too resource intensive, nearly all meat is vat grown."
},
{
"file": "Produce",
"categoryname": "Natural_Products/Food/Generic",
"price": "80",
"mass": "1.1",
"volume": "1",
"description": "@cargo/produce.image@Fruits and vegetables ranging from the humble citrus fruit and salad vegetables to those exotic items found only in the most out of the way locations."
},
{
"file": "Malt_Beverages",
"categoryname": "Natural_Products/Liquor",
"price": "45",
"mass": "0.9",
"volume": "1",
"description": "@cargo/beer.image@Incorporating alcohols such as beer, ale and mead, such drink is usually made from fermented grains, barley and hops, but not necessarily limited to this. Served cold in warm climes, and warm in cold climes."
},
{
"file": "Wines",
"categoryname": "Natural_Products/Liquor",
"price": "100",
"mass": "0.9",
"volume": "1",
"description": "@cargo/wine.image@The fermented juices of fruit, typically grapes, crushed under the feet of whoever was passing by, hence the various distinctive tastes. After aging and bottling, wine is sold to the mass market in the mistaken belief that it provides refined social graces."
},
{
"file": "Spirits",
"categoryname": "Natural_Products/Liquor",
"price": "55",
"mass": "0.9",
"volume": "1",
"description": "@cargo/spirits.image@Consisting in the main of hard alcohols distilled from whatever was handy at the time and usually aged in wood barrels to disguise the aftertaste. One of the prime sources of battle causes and maudlin singing."
},
{
"file": "Brandy",
"categoryname": "Natural_Products/Liquor",
"price": "70",
"mass": "0.9",
"volume": "1",
"description": "@cargo/brandy.image@Fermented fruit, distilled into liver quaking perfection. Notably, after humans expanded offworld, people stopped caring as much as to whether their brandy came from the Cognac region..."
},
{
"file": "Space_Grog",
"categoryname": "Natural_Products/Liquor",
"price": "60",
"mass": "1.8",
"volume": "2",
"description": "@cargo/space_grog.image@This is the stuff guaranteed to knock a drinker out cold after a couple of glasses have burned down their throat. Known in previous ages as moonshine, hooch, rough gut and so on, this is the liquor with no quality control for ingredients, made in those out of the way places where alcohol is drunk for its kick, not its taste."
},
{
"file": "Tripezian_Premium",
"categoryname": "Natural_Products/Liquor/Confed",
"price": "55",
"mass": "0.2",
"volume": "0.25",
"description": "@cargo/tripezian_premium.image@Taste the flavour of the Frontier! Tripezian Ale is the product of fermented tripezian berries, an alien fruit lethal when eaten, but whose fermented juices have an intense and exotic flavour. Tripezian berries are produced on only a few worlds and in limited quantities. This makes Tripezian Ale one of the most expensive and sought after beverages in all of known space."
},
{
"file": "Emendolya",
"categoryname": "Natural_Products/Liquor/Confed",
"price": "2000",
"mass": "2",
"volume": "1",
"description": "@cargo/specialty_wines.image@This product was released to the public by Velthatris Corporation. Some of the latest achievements in gene alteration seem to be connected to it although Velthatris remains silent about this. It is on the right track to be an en vogue beverage despite the fact that long term effects on the human physiology have still not been fully investigated."
},
{
"file": "Specialty_Wines",
"categoryname": "Natural_Products/Liquor/Confed",
"price": "10000",
"mass": "2",
"volume": "1",
"description": "@cargo/specialty_wines.image@Finely crafted wines from carefully cultivated vineyards. Unlike the cheap wines from farm planets devoted to wine production, every bottle contains liquid craftsmanship and the potential for culinary exploration."
},
{
"file": "Sarakan_Tears",
"categoryname": "Natural_Products/Liquor/Uln",
"price": "160",
"mass": "0.2",
"volume": "0.25",
"description": "@cargo/sarakan_tears.image@Distilled from the sap of the Sarak bush, this spirit defines the old adage: 'Whatever doesn't kill you, will numb the mouth, burn the throat, upset the stomach, tear you a new one and leave you with a nice rosy outlook towards the universe!'"
},
{
"file": "Cotton",
"categoryname": "Natural_Products/Renewable_Resources",
"price": "120",
"mass": "11",
"volume": "10",
"description": "@cargo/cotton.image@Used in the main as a fabric in clothing, textiles and home furnishings, cotton remains one of the best natural fibres in use today."
},
{
"file": "Water",
"categoryname": "Natural_Products/Renewable_Resources",
"price": "10",
"mass": "10",
"volume": "10",
"description": "@cargo/fresh_water.image@The main building block of life. Fresh water is required by most animalistic species to maintain bodily function. A body will normally use water to carry nutrients to all cells of the body, and remove toxic wastes to avoid poisoning and death."
},
{
"file": "Rubber",
"categoryname": "Natural_Products/Renewable_Resources",
"price": "150",
"mass": "1.5",
"volume": "1",
"description": "@cargo/rubber.image@An elastic substance that is obtained by coagulating the milky juice of various tropical plants, prepared as sheets then dried and cut. Basic uses are in correspondence, manufacturing, clothing and sexual activities."
},
{
"file": "Lumber",
"categoryname": "Natural_Products/Renewable_Resources",
"price": "105",
"mass": "17",
"volume": "27",
"description": "@cargo/lumber.image@The stripped down trunks of larger plantlife, still finding use in construction, religious ceremonies, artwork, furnishings and primitive heating."
},
{
"file": "Spices",
"categoryname": "Natural_Products/Plant_Products",
"price": "30",
"mass": "0.05",
"volume": "0.1",
"description": "@cargo/spices.image@Useful as a preservative and in general food preparation. Traders often use spices to disguise the taste of rancid meat after transport. Many human travellers use spices to add (disguise) the flavour in standard mealpacks."
},
{
"file": "Incense",
"categoryname": "Natural_Products/Plant_Products",
"price": "50",
"mass": "0.5",
"volume": "1",
"description": "@cargo/incense.image@Consisting of compressed fragrant plantlife, oils and the occasional recreational drug, incense is used for both religious purposes, and by the mass market for relaxation."
},
{
"file": "Narcotics",
"categoryname": "Natural_Products/Plant_Products",
"price": "110",
"mass": "0.15",
"volume": "0.1",
"description": "@cargo/narcotics.image@Typically, the cured product of various plants burnt to produce an aromatic smoke and inhaled through a respiratory system. The most common variety used is the Nicotiana (nicotine) leaf. Other plant products include cannabis, hashish, and dried opium juice."
},
{
"file": "Krystal",
"categoryname": "Natural_Products/Plant_Products",
"price": "240",
"mass": "0.1",
"volume": "0.1",
"description": "@cargo/krystal.image@Typically a small tube filled with a crystalline substance used to produce an euphoric effect. Commonly absorbed into the bloodstream via the respiratory system, or injected directly into the bloodstream via hyposyringes."
},
{
"file": "Khaisalantimin_F62",
"categoryname": "Natural_Products/Plant_Products",
"price": "500",
"mass": "0.04",
"volume": "0.1",
"description": "@cargo/khaisalantimin_F62.image@Produced by a genetically engineered hybrid of Terran and Xeno flora, the F62 variant of the extract of the seeds of the Khaisal plant induces a prolonged state of euphoria in humans. While the extract is not intrinsically toxic and withdrawal is remarkably mild, problems arise due to rapidly increasing tolerance and lost productivity due to excessive use."
},
{
"file": "Livestock",
"categoryname": "Natural_Products/Life-forms",
"price": "110",
"mass": "60",
"volume": "100",
"description": "@cargo/livestock.image@Without goats and sheep, the world of good cheese would be greatly crippled."
},
{
"file": "Bonsai",
"categoryname": "Natural_Products/Life-forms",
"price": "250",
"mass": "2",
"volume": "8",
"description": "@cargo/bonsai.image@The ancient art of Bonsai (crudely: Tree Pruning) creates easily transportable plant shapes of all exotic shape and bent. In high demand for their aesthetic appearance, they are often used to complete landscaped visual surrounds. A secondary use is their calming effect while caring for your Bonsai."
},
{
"file": "Astral_Gases",
"categoryname": "Raw_Materials/Gases",
"price": "40",
"mass": "1.2",
"volume": "25",
"description": "@cargo/astral_gases.image@Astral gases are the highly valuable and rare products of uncommon reactions in nebulas and gas giants. Comprized of complex structures of fused gaseous elements, Astral gases have a wide range of applications in modern industry and manufacturing."
},
{
"file": "Atmospheric_Gases",
"categoryname": "Raw_Materials/Gases",
"price": "30",
"mass": "1.2",
"volume": "25",
"description": "@cargo/atmospheric_gases.image@Consisting primarily of those gases required to support life such as hydrogen, oxygen and nitrogen. These and other gases are mixed according to individual species' requirements. Without these gases, existence in space would be impossible."
},
{
"file": "Halogen_Gases",
"categoryname": "Raw_Materials/Gases",
"price": "80",
"mass": "1.2",
"volume": "25",
"description": "@cargo/halogen_gases.image@Halogen gases are characterized as salt forming (hence sodium chloride or common table salt) They are used primarily in the production of various nuclear, chemical and petrochemical fuels, as well as general manufacturing and the purification of water."
},
{
"file": "Noble_Gases",
"categoryname": "Raw_Materials/Gases",
"price": "65",
"mass": "1.2",
"volume": "25",
"description": "@cargo/noble_gases.image@Otherwise known as the inert gases. Commonly used in refining, medical applications, general manufacturing as well as nuclear energy production and laser weapon production and research."
},
{
"file": "Corundum_Crystals",
"categoryname": "Raw_Materials/Industrial_Gems",
"price": "1400",
"mass": "30",
"volume": "10",
"description": "@cargo/corundum_crystal.image@A hard aluminum oxide, the common forms of which are used as abrasives."
},
{
"file": "Dilithium_Crystals",
"categoryname": "Raw_Materials/Industrial_Gems",
"price": "1340",
"mass": "20",
"volume": "10",
"description": "@cargo/dilithium.image@Dilithium telluride, while not particularly impressive, is always a desired item among the religious fanatics of the trekkie religion."
},
{
"file": "Quartz_Crystals",
"categoryname": "Raw_Materials/Industrial_Gems",
"price": "1000",
"mass": "20",
"volume": "10",
"description": "@cargo/quartz_crystal.image@A useful component of cheap oscillators and cheap art."
},
{
"file": "Trilithium_Crystals",
"categoryname": "Raw_Materials/Industrial_Gems",
"price": "1600",
"mass": "20",
"volume": "10",
"description": "@cargo/trilithium_crystal.image@Prized possessions of the trekkie religion, the crystals (trilithium nitride) have precious little actual value."
},
{
"file": "Construction_Stone",
"categoryname": "Raw_Materials/Stone",
"price": "20",
"mass": "120",
"volume": "50",
"description": "@cargo/facing_stone.image@When advanced contruction materials are unavailable, or not usable in a particular environment, large stone blocks (typically granite or basalt) are used. Used mainly as foundation stone, water planets in particular use stone as a sea barrier, creating artificial islands."
},
{
"file": "Facing_Stone",
"categoryname": "Raw_Materials/Stone",
"price": "100",
"mass": "50",
"volume": "25",
"description": "@cargo/construction_stone.image@The finer, better textured stone (of which marble is famous) is used as a decorative covering on buildings, and for stonework. Possessing a building with stone facing, rather than standard materials is a sign of status and wealth."
},
{
"file": "Natural_Sculptures",
"categoryname": "Raw_Materials/Stone",
"price": "350",
"mass": "65",
"volume": "50",
"description": "@cargo/natural_sculptures.image@Originally considered waste, stone that has been carved by nature is now considered both decoration and art. Large slabs are used as wall decoration, while small pieces are used in artwork, or are works of art themselves."
},
{
"file": "Natural_Gas",
"categoryname": "Raw_Materials/Hydrocarbons",
"price": "92",
"mass": "1",
"volume": "25",
"description": "@cargo/natural_gas.image@A combustible mixture of gases, usable as both a fuel and a raw material in production. A secondary source of such gas is the by-product of animal bio-waste."
},
{
"file": "Oil",
"categoryname": "Raw_Materials/Hydrocarbons",
"price": "80",
"mass": "8",
"volume": "10",
"description": "@cargo/oil.image@Liquid lipids of various origin."
},
{
"file": "Coal",
"categoryname": "Raw_Materials/Hydrocarbons",
"price": "20",
"mass": "12",
"volume": "10",
"description": "@cargo/hydrocarbons.image@Ancient dead compressed carbon-life. Solid form."
},
{
"file": "Butane",
"categoryname": "Raw_Materials/Hydrocarbons",
"price": "120",
"mass": "8",
"volume": "10",
"description": "@cargo/butane.image@Because sometimes, with all the technology around you, what you really want is a Zippo."
},
{
"file": "Diesel",
"categoryname": "Raw_Materials/Hydrocarbons",
"price": "130",
"mass": "8",
"volume": "10",
"description": "@cargo/diesel.image@On planets where resupply is expensive, diesel is an efficient, if polluting, fuel of choice."
},
{
"file": "Petroleum",
"categoryname": "Raw_Materials/Hydrocarbons",
"price": "90",
"mass": "8",
"volume": "10",
"description": "@cargo/petroleum.image@Ancient dead carbon-life. Liquid form."
},
{
"file": "Iron_Ore",
"categoryname": "Raw_Materials/Ores",
"price": "52",
"mass": "70",
"volume": "10",
"description": "@cargo/base.image@Iron has been vital in the histories of all of the spacefaring races. The prime variance is the ratio of cast iron cookware to iron and steel killingware."
},
{
"file": "Nickel_Ore",
"categoryname": "Raw_Materials/Ores",
"price": "50",
"mass": "90",
"volume": "10",
"description": "@cargo/base.image@Useful as an anti-corrosive coating, nickel is often mined in bulk from nickel-iron asteroids."
},
{
"file": "Tin_Ore",
"categoryname": "Raw_Materials/Ores",
"price": "47",
"mass": "70",
"volume": "10",
"description": "@cargo/base.image@Absent tin, the interstellar sardine trade would flounder."
},
{
"file": "Tungsten_Ore",
"categoryname": "Raw_Materials/Ores",
"price": "110",
"mass": "190",
"volume": "10",
"description": "@cargo/base.image@Due to its exceptional melting temperature and continued tensile strength at high temperatures, tungsten is a vital part of the spacefaring industry."
},
{
"file": "Base_Metals",
"categoryname": "Raw_Materials/Metals",
"price": "23",
"mass": "90",
"volume": "10",
"description": "@cargo/base.image@Composing most elements discovered to date, it includes titanium, iron, nickel, copper to name a few common metals. These base metals are usually blended both with each other and the other remaing periodic elements. The resulting alloys have application across the full spectrum of general manufacturing, from steel to nuclear applications to medicine, lighting and painting."
},
{
"file": "Alkali_Metals",
"categoryname": "Raw_Materials/Metals",
"price": "47",
"mass": "65",
"volume": "10",
"description": "@cargo/alkali_metals.image@Alkali metals and earths are primarily used in alloys with other metals. As such, alkali derivatives can be found in structural materials, fuel sources, nuclear applications and general manufacturing. Common characteristics include igniting spontaneously in air and violent reactions with water."
},
{
"file": "Isometal",
"categoryname": "Refined_Materials/Alloys/Confed",
"price": "130",
"mass": "16",
"volume": "1",
"description": "@cargo/isometal.image@A generic term for any metal alloy which has been strengthened via a slow thermal reduction cycle. As a result these alloys have a high ability to dissipate energy and are frequently used for armor plating."
},
{
"file": "Plasteel",
"categoryname": "Refined_Materials/Alloys/Confed",
"price": "60",
"mass": "6",
"volume": "1",
"description": "@cargo/plasteel.image@An alloy of metals and carbon nanotubes has resulted in a lightweight metal with high strength and durability. Commonly used in aerospace framework and to a small extent as exterior armor."
},
{
"file": "Plasglass",
"categoryname": "Refined_Materials/Alloys/Confed",
"price": "60",
"mass": "5",
"volume": "1",
"description": "@cargo/plasglass.image@An alloy of metals, plastics and silica glass, this alloy has a transparency slightly less than glass, but with the hardness of metals and is shatterproof. Commonly used for windows in buildings, and where solid walls will detract from visual appearance."
},
{
"file": "Steel",
"categoryname": "Refined_Materials/Alloys/Confed",
"price": "76",
"mass": "8",
"volume": "1",
"description": "@cargo/steel.image@While surpassed by more highly advanced alloy combinations, steel remains a low cost version for general and machinery construction. Steel consists of an iron ore base with a mixture of sundry metals to vary melting points, tensile strength, brittleness and hardness."
},
{
"file": "Bipolite",
"categoryname": "Refined_Materials/Alloys/Aera",
"price": "110",
"mass": "8",
"volume": "1",
"description": "@cargo/bipolite.image@A polysteel mix variable alloy doped to produce electromagnetic regions, which, when activated, assist in diverting particles from impact paths and rippling kinetic energy from the impact point."
},
{
"file": "Duranium",
"categoryname": "Refined_Materials/Alloys/Aera",
"price": "110",
"mass": "20",
"volume": "1",
"description": "@cargo/duranium.image@Sacrificing increased mass for increased protection, massive slabs of depleted uranium are mixed with osmium and encased in an ablative coating of tantalum carbide."
},
{
"file": "Polysteel",
"categoryname": "Refined_Materials/Alloys/Aera",
"price": "78",
"mass": "8",
"volume": "1",
"description": "@cargo/polysteel.image@An intricate filadough-like sandwich of metals and ceramics glued together by carbon polymers."
},
{
"file": "Tritanium",
"categoryname": "Refined_Materials/Alloys/Aera",
"price": "100",
"mass": "7",
"volume": "1",
"description": "@cargo/tritanium.image@An alloy based on titanium and forming interlinking molecules of three metallic atoms, this metal is exceedingly strong. Commonly used in bulkhead construction and armor plating."
},
{
"file": "Carbonium",
"categoryname": "Refined_Materials/Alloys/Rlaan",
"price": "40",
"mass": "6",
"volume": "1",
"description": "@cargo/carbonium.image@This alloy is generated from the bio-waste of the Rlaan biogenerator energy system. This bio-waste is melded at high temperature with assorted metals to form an odd appearing, flexible yet hard alloy."
},
{
"file": "Obsidisteel",
"categoryname": "Refined_Materials/Alloys/Rlaan",
"price": "100",
"mass": "7",
"volume": "1",
"description": "@cargo/obsidisteel.image@A combination of metals and silicate oxides, this dark, hard substance is actually secreted from living silicon based organisms."
},
{
"file": "Radium",
"categoryname": "Refined_Materials/Radioactive_Metals",
"price": "400",
"mass": "5",
"volume": "1",
"description": "@cargo/radium.image@A wonderful ingredient for glowing paints."
},
{
"file": "Thorium",
"categoryname": "Refined_Materials/Radioactive_Metals",
"price": "300",
"mass": "11",
"volume": "1",
"description": "@cargo/radioactives.image@An exceptionally common source of nuclear power, it is also known for the exceptional melting points of its oxide."
},
{
"file": "Uranium",
"categoryname": "Refined_Materials/Radioactive_Metals",
"price": "540",
"mass": "19",
"volume": "1",
"description": "@cargo/uranium.image@A rather common radioactive used primarily in fission piles. The depleted isotopes are used in kinetic impact weapons."
},
{
"file": "Anti_Corrosives",
"categoryname": "Refined_Materials/Precious_Metals",
"price": "180",
"mass": "18",
"volume": "1",
"description": "@cargo/anti_corrosives.image@Exemplified by such metals as Platinum, prized for its luster and resistance to corrosion, the rarity of these metals leads to their value."
},
{
"file": "Gold",
"categoryname": "Refined_Materials/Precious_Metals",
"price": "160",
"mass": "19",
"volume": "1",
"description": "@cargo/gold.image@An exceptionally ductile metal, gold has long been used for the manufacture of useless, albeit pretty, constructions. It's conductive properties have, over the last millenium, given it roles in more useful applications."
},
{
"file": "Rare_Earths",
"categoryname": "Refined_Materials/Precious_Metals",
"price": "156",
"mass": "18",
"volume": "1",
"description": "@cargo/rare_earths.image@Otherwise known as lanthanoids or the lanthanide series of metals that are highly reactive in air. Rare Earths are used in almost all advanced product manufacturing, particularly lighting and nuclear applications."
},
{
"file": "Chemical_Mix",
"categoryname": "Refined_Materials/Chemicals",
"price": "100",
"mass": "1",
"volume": "1",
"description": "@cargo/chemical_mix.image@Original sources of chemicals used in the creation of gases, liquids and solids that form chemical fuel."
},
{
"file": "Heavy_Water",
"categoryname": "Refined_Materials/Chemicals",
"price": "100",
"mass": "1",
"volume": "1",
"description": "@cargo/heavy_water.image@While not a fuel in itself, it is a key component in several types of advanced fuels. It is a water molecule where the hydrogen atom contains an additional neutron. Heavy Water has extensive use in both nuclear fission and fusion, and is used in water dynamo batteries."
},
{
"file": "Dyes",
"categoryname": "Refined_Materials/Chemicals",
"price": "100",
"mass": "1",
"volume": "1",
"description": "@cargo/dyes.image@Dyes are colored substances obtained from various chemical compounds and used to give products such as food, textiles and suchlike a coloration different to their original form."
},
{
"file": "Acids",
"categoryname": "Refined_Materials/Chemicals",
"price": "100",
"mass": "1",
"volume": "1",
"description": "@cargo/acids.image@Acids are substances that taste sour in water solution, react with some metals to release hydrogen, react with a base to form salts, and enact certain chemical reactions known as acid catalysis. Used extensively in the manufacturing process."
},
{
"file": "Catalysts",
"categoryname": "Refined_Materials/Chemicals",
"price": "100",
"mass": "1",
"volume": "1",
"description": "@cargo/catalysts.image@Catalysts are substances that enable a chemical reaction to occur at a faster rate, lower temperature or in conditions altered from what would normally occur. Used extensively in industrial processes."
},
{
"file": "Esters",
"categoryname": "Refined_Materials/Chemicals",
"price": "100",
"mass": "1",
"volume": "1",
"description": "@cargo/esters.image@Any of a class of often fragrant compounds that can be represented by the formula RCOOR and that are usually formed by the reaction between an acid and an alcohol with elimination of water. Typically used for aromatic purposes."
},
{
"file": "Rare_Catalysts",
"categoryname": "Refined_Materials/Chemicals",
"price": "200",
"mass": "1",
"volume": "1",
"description": "@cargo/rare_catalysts.image@Corporations have made fortunes by perfecting a single chemical reaction for maximum efficiency. One of the best ways of doing this is to use the best catalysts to move the reaction faster and with less waste. The most valuable catalysts are often very difficult and expensive to obtain."
},
{
"file": "Ethanol",
"categoryname": "Refined_Materials/Chemicals",
"price": "100",
"mass": "1",
"volume": "1",
"description": "@cargo/ethanol.image@Explosive fuel liquid used as a basic fuel source for powering primitive combustion motors. The motor ignites the fuel, which expands on ignition. The pressure of the explosion drives a piston, in turn driving a power shaft."
},
{
"file": "Petrochemicals",
"categoryname": "Refined_Materials/Chemicals",
"price": "100",
"mass": "1",
"volume": "1",
"description": "@cargo/petrochems.image@Refined hydrocarbon fuels. Used to power lower tech combustion equipment and vehicles. Having seen use for centuries, petrochem power plants have been developed to a high degree of efficiency in converting petrochems to energy. Plus, almost all waste emission is now recycled for industrial usage. Strongly desired for its high power to mass ratio on developing worlds with low technological infrastructure."
},
{
"file": "Chemical_Fuels",
"categoryname": "Refined_Materials/Chemicals",
"price": "100",
"mass": "1",
"volume": "1",
"description": "@cargo/chemfuel.image@Gases, liquids and solids that when superheated, explode, providing heat and thrust when directed out of a nozzle. Typically used as a propellant in solid weaponry, and in space vehicles where other power sources are unavailable or unnecessary."
},
{
"file": "Industrial_Gemstones",
"categoryname": "Refined_Materials/Purified_and_Enhanced_Materials",
"price": "1130",
"mass": "3",
"volume": "1",
"description": "@cargo/industrial_gemstones.image@Lesser quality and flawed gemstones are more often used in industrial processes rather than for personal adornment. They form part of the manufacturing process itself, but occasionally are used as part of the end product."
},
{
"file": "Jewels",
"categoryname": "Refined_Materials/Purified_and_Enhanced_Materials",
"price": "1130",
"mass": "3",
"volume": "1",
"description": "@cargo/jewels.image@Formed by high planetary pressure and heat, jewels are brilliantly colored gemstones usually used for personal adornment. Rubies, sapphires and emeralds are the most popularly known jewels. Some jewels also find use in weapons research."
},
{
"file": "Diamonds",
"categoryname": "Refined_Materials/Purified_and_Enhanced_Materials",
"price": "1000",
"mass": "3",
"volume": "1",
"description": "@cargo/diamonds.image@As one of the hardest known natural substances, diamonds are a rarity among gemstones. They find use in most industrial processes, usually for cutting, weapons research, and are also highly valued for their appearance alone."
},
{
"file": "Sorir_Lightstones",
"categoryname": "Refined_Materials/Purified_and_Enhanced_Materials",
"price": "1130",
"mass": "0.8",
"volume": "1",
"description": "@cargo/sorir_lightstones.image@Researchers are still undecided if this stone is a live being, or a chemically reactant mineral. Either way, when immersed in water, these stones provide a bright light in ruby, sapphire and emerald hues. Aside from their beauty, these stones are commonly used as emergency lighting where alternative power is unavailable."
},
{
"file": "Reinforced_Rubber",
"categoryname": "Refined_Materials/Purified_and_Enhanced_Materials",
"price": "1130",
"mass": "1.7",
"volume": "1",
"description": "@cargo/reinforced_rubber.image@Natural or synthetic rubber modified by chemical treatment to increase its useful properties such as toughness and resistance to wear. Used especially in airlocks, electrical insulation, and for waterproofing materials."
},
{
"file": "Wood_Boards",
"categoryname": "Refined_Materials/Purified_and_Enhanced_Materials",
"price": "130",
"mass": "6",
"volume": "10",
"description": "@cargo/wood_boards.image@While wood is no longer required for its structural aspects on developed worlds, lesser developed planets still use it as a primary construction material. It does maintain, however, an aesthetic preference for its appearance."
},
{
"file": "Plastics",
"categoryname": "Refined_Materials/Synthetics",
"price": "240",
"mass": "1",
"volume": "1",
"description": "@cargo/plastics.image@Any of various organic compounds artificially produced by polymerization and capable of being molded, extruded, cast into various shapes and films, or drawn into filaments."
},
{
"file": "Computer_Fibres",
"categoryname": "Refined_Materials/Synthetics",
"price": "370",
"mass": "1",
"volume": "1",
"description": "@cargo/computer_fibres.image@The most common component of modern electronics and computers is the 'computer fibre'. These fibers act as carriers of data between different computer subunits in modern systems, and also as small dynamic logic processors in everyday objects."
},
{
"file": "Bulk_Seeds",
"categoryname": "Industrially_Manufactured_Goods/Agricultural",
"price": "25",
"mass": "60",
"volume": "100",
"description": "@cargo/bulk_seeds.image@As most seed crops develop sterile adult forms when growing in alien soils, only a select few planets have the ability to generate seed supplies. Hence, all non-native crops must still be brought in through interstellar shipping, and most agricultural colonies tend to lack the genetic research facilities to produce their own variants."
},
{
"file": "Engineered_Seeds",
"categoryname": "Industrially_Manufactured_Goods/Agricultural",
"price": "25",
"mass": "35",
"volume": "50",
"description": "@cargo/engineered_seeds.image@Genetically enhanced or varied cropseed developed to remain fertile in alien soils, to produce more from a given amount or to produce more quickly. Environmental terrorists still protest the use of such products, despite acceptance by the population at large."
},
{
"file": "Pesticides",
"categoryname": "Industrially_Manufactured_Goods/Agricultural",
"price": "100",
"mass": "27",
"volume": "25",
"description": "@cargo/pesticides.image@No matter where one goes, it seems that every world capable of supporting life supports at least one species that is exceptionally annoying to whatever civilization attempts to colonize it. The age-old solution to this problem is to kill said species. Admittedly, doing so in a fashion that doesn't manage to hurt the colonists is still a subject of intense research. However, any pesticide producer will proudly claim that having a few babies born with the wrong number of legs is surely a small price to pay for not having disfiguring holes in all of the world's crops."
},
{
"file": "Synthetic_Fertilizer",
"categoryname": "Industrially_Manufactured_Goods/Agricultural",
"price": "140",
"mass": "80",
"volume": "64",
"description": "@cargo/synthetic_fertilizer.image@Since the smell of organic fertilizer is impossible to get out of one's cargo hold, most transport haulers will only allow synthetic fertilizer through their bay doors. Synthetic fertilizer consists of those compounds needed to place nutrients in planetary soils, without those added extras to get on the nose."
},
{
"file": "Distillators",
"categoryname": "Industrially_Manufactured_Goods/Agricultural",
"price": "200",
"mass": "12",
"volume": "5",
"description": "@cargo/distillators.image@While mainly consisting of tubing and pumps, distillators will extract fresh water from any water source via a process of evaporation, chemical reaction, sedimentation and other arcane processes. Used to avoid the 'water, water everywhere and not a drop to drink' problem."
},
{
"file": "Livestock_Equipment",
"categoryname": "Industrially_Manufactured_Goods/Agricultural",
"price": "150",
"mass": "10",
"volume": "10",
"description": "@cargo/livestock_equipment.image@Whether you need to collect the products of an animals intestines for food, ensure the care of said animals or fatten them up for slaughter to make sure they produce the most, you need the right equipment for the job."
},
{
"file": "Hydroponics",
"categoryname": "Industrially_Manufactured_Goods/Agricultural",
"price": "130",
"mass": "18",
"volume": "20",
"description": "@cargo/hydroponics.image@Growing plants in a liquid solution offers flexibility in placement relative to soil planting. Especially useful in environments that do not actually have soil such as spacecraft and stations, or used where planetary soil is not sufficient for the growing of food crops."
},
{
"file": "Automated_Factories",
"categoryname": "Industrially_Manufactured_Goods/Construction",
"price": "27000000",
"mass": "20000",
"volume": "10000",
"description": "@cargo/automated_factories.image@As general production involves - in the main - mindless repetition, it is expected that most spaceborn factories will become automated. This is expected to save countless billions in both wages and sentient life maintenance. AI Cores will fully operate such factories, with the only likely sentient contact being oversight and production program changes."
},
{
"file": "Construction_Vehicles",
"categoryname": "Industrially_Manufactured_Goods/Construction",
"price": "90000",
"mass": "300",
"volume": "75",
"description": "@cargo/construction_vehicles.image@The ability to lift large masses and manipulate them dextrously in three dimensions is essential for construction and lacking in all known sentient beings. These machines make up for the shortcomings of biology."
},
{
"file": "Factory_Constructors",
"categoryname": "Industrially_Manufactured_Goods/Construction",
"price": "100000",
"mass": "4000",
"volume": "800",
"description": "@cargo/factory_constructors.image@Self constructing factories in a large box. These constructors need only be placed in location, and on the press of the Start button they will unfold, construct the prefab buildings and install the necessary factory equipment. Pressing the Start button a second time will cancel the operation."
},
{
"file": "Landscaping_Equipment",
"categoryname": "Industrially_Manufactured_Goods/Construction",
"price": "16620",
"mass": "250",
"volume": "55",
"description": "@cargo/earthmover.image@For when that hill is blocking your view, you want to recreate your garden surrounds in the latest style, or just want to cover up that unsightly nuclear waste dump. Whenever you are altering the appearance of your surrounds, you need this equipment."
},
{
"file": "PreFab_Buildings",
"categoryname": "Industrially_Manufactured_Goods/Construction",
"price": "4400",
"mass": "200",
"volume": "125",
"description": "@cargo/prefab_buildings.image@Prefabricated modular buildings are used for all bar the most costly or esoteric of construction. Easy to construct, seal and furnish, these buildings find use in both residential, industrial and commercial operations. Often used as a structural base with additions made to suit taste."
},
{
"file": "Recycling_Tanks",
"categoryname": "Industrially_Manufactured_Goods/Construction",
"price": "25000",
"mass": "15",
"volume": "8",
"description": "@cargo/recycling_tanks.image@Highly advanced civilizations produce a great deal of waste products. Discarded electronics, empty mealpacks, and old starships contain a wealth of raw and rare materials. Recycling tanks are designed to help break down waste into simple materials that can be reused. This item promises to revolutionize how trash is handled everywhere, from space stations to superdeveloped worlds."
},
{
"file": "PAI_Wetware",
"categoryname": "Industrially_Manufactured_Goods/Electronics",
"price": "12500",
"mass": "0.5",
"volume": "0.5",
"description": "@cargo/pai_wetware.image@Pseudo-Artificial Intelligence. PAIs are wet-ware embedded in hardware - genetically engineered brain-in-boxes that distribute the tasks of thinking between the organic and inorganic components. Commercial PAIs are almost universally designed as idiot-savant systems, capable of limited self-motivation and direction, easy to manipulate, but capable of extraordinary problem solving power for the problems they were designed for and trained to assault. PAIs tend to be able to present more natural user interfaces than the expert systems they compete with, tending to be at least vaguely self-aware, and much more responsive to and on emotional levels. In particular, niche market and custom built models are limited only by legislation requiring that entities surpassing a specified set of standardized metrics cannot be considered property, and must be registered as either custom children or custom dependent employees. While the difference is clear for low end models, standards aside, most will agree that the line between a high-end PAI and a designer cyborg human is exceptionally blurry."
},
{
"file": "AI_Cores",
"categoryname": "Industrially_Manufactured_Goods/Electronics",
"price": "13750000",
"mass": "10",
"volume": "5",
"description": "@cargo/ai_cores.image@An outgrowth of cybernetics, AI Cores approach true artificial intelligence. AI Core development and usage is limited, with the development of expert systems and SuSim? cyborgs. For dry computational tasks and rule interpretation the expert systems' lack of self-awareness was a blessing rather than a burden. For physically manifested tasks considered too menial, too dangerous, or too monotonous, the SuSims and SuSimCys proved cheaper, more reliable, and, through advancements in genetics, easy to dominate. Only for those applications where it is difficult to keep cyborg organics alive; or more than computational processing is required are AI Cores employed."
},
{
"file": "Welding_Lasers",
"categoryname": "Industrially_Manufactured_Goods/Manufacturing",
"price": "180",
"mass": "4",
"volume": "2",
"description": "@cargo/welding_lasers.image@There are government projects in every colony that primarily consist of tearing up infrastructure and welding big metal plates over the holes, though no-one knows why. This remains until some second agency comes by a few years later to replace whatever was ripped out. There's also the whole starship construction business, but one wonders which is the bigger market. Either way, effective workers require effective tools."
},
{
"file": "Factory_Equipment",
"categoryname": "Industrially_Manufactured_Goods/Manufacturing",
"price": "9600",
"mass": "10",
"volume": "2",
"description": "@cargo/factory_equipment.image@All hardwired equipment needed for a factory to commence operations. Whether food processing or product manufacture, all you need is supplied in a do it yourself construction kit. Press Start to continue."
},
{
"file": "Robot_Workers",
"categoryname": "Industrially_Manufactured_Goods/Manufacturing",
"price": "2900",
"mass": "25",
"volume": "4",
"description": "@cargo/robot_workers.image@Tireless laborers that will attempt to do nearly any task you can require of them. Unfortunately, in order to keep costs down, their ability to comprehend instructions is somewhat limited."
},
{
"file": "Assembly_Tools",
"categoryname": "Industrially_Manufactured_Goods/Manufacturing",
"price": "96",
"mass": "1",
"volume": "0.5",
"description": "@cargo/assembly_tools.image@To do any job where something needs to be put together, ripped apart or combined with other things, you need the right tools. This packaged set contains everything the happy worker needs to perform their duties. Buy now and receive a free set of socket wrenches."
},
{
"file": "BioApplicator",
"categoryname": "Industrially_Manufactured_Goods/Manufacturing",
"price": "90",
"mass": "4",
"volume": "5",
"description": "@cargo/cargo_hud.image@Essentially a vat full of genetically engineered organisms or their biowaste, with some valves and a spray nozzle. This device is used to create and apply the complex proteins that the Rlaan use as a basic construction material. When the goop sprayed out of the nozzle reacts with the methane atmosphere present on nearly all Rlaan worlds, the required building material denatures into the desired solid form."
},
{
"file": "BioRemodeler",
"categoryname": "Industrially_Manufactured_Goods/Manufacturing",
"price": "96",
"mass": "0.6",
"volume": "0.5",
"description": "@cargo/bio_remodeler.image@This device applies a set of enzymes that sufficiently liquify the organics used in most Rlaan construction. The organics become gel-like, and can be remodelled into the desired forms with little effort."
},
{
"file": "Atmospheric_Scrubbers",
"categoryname": "Industrially_Manufactured_Goods/Mining",
"price": "27000",
"mass": "4",
"volume": "8",
"description": "@cargo/atmospheric_scrubbers.image@Atmostpheric scrubbers consist of a series of screens, containers and filters to remove toxic wastes from an artificial atmosphere. As few if any spaceborn craft have an effective contained ecology, they require such artificial means of providing a sustained breathable atmosphere.."
},
{
"file": "Boring_Droids",
"categoryname": "Industrially_Manufactured_Goods/Mining",
"price": "90",
"mass": "150",
"volume": "25",
"description": "@cargo/boring_droids.image@Construction of mine shafts has never been so easy. Just feed your tunnel plans to these babies, and come back a few days later to find huge mounds of debris and delightfully polished passageways."
},
{
"file": "Explosives",
"categoryname": "Industrially_Manufactured_Goods/Mining",
"price": "95",
"mass": "2",
"volume": "1",
"description": "@cargo/explosives.image@Things that go BOOM are always required to obtain materials from rock strata. Whether removing surface materials to get to the mining beneath, breaking up large amounts of materials for processing, or rough access work, explosives will do the job every time. Made for vacuum as well as atmospheric use, they have few usage limitations."
},
{
"file": "Hull_Patches",
"categoryname": "Industrially_Manufactured_Goods/Mining",
"price": "95",
"mass": "1",
"volume": "1",
"description": "@cargo/hull_patches.image@As hull leaks are frequent due to general use (let alone battle), various products have been developed to maintain hull integrity. They range from liquid spray canisters with QuickFast? Sealant (tm), to diskcaps to full sized metal plates. Most are used in automated repair systems, while others need to be applied in spacedock."
},
{
"file": "Laser_Drills",
"categoryname": "Industrially_Manufactured_Goods/Mining",
"price": "95",
"mass": "4",
"volume": "2",
"description": "@cargo/laser_drills.image@While the precise nature of the cuts produced by this drill certainly add to its usefulness, the fact that laser drills never go blunt or snag on dense ore deposits has caused the laser drill to replace all other competitors. With a detachable powerpack for low power usage, or with cable attachments to a high power source, drilling depth, operating time and area of operation can vary immensely."
},
{
"file": "Light_Alls",
"categoryname": "Industrially_Manufactured_Goods/Mining",
"price": "88",
"mass": "1",
"volume": "1",
"description": "@cargo/light_alls.image@There are few things more terrifying to an asteroid miner than the classic scene from the holovid movie 'The Dark Rock', wherein a group of asteroid miners' standard light droid loses power, and they are attacked by a hideous alien awoken by their mining. While no voracious aliens have ever actually been found in an asteroid mine, reality has never been been a particularly key component of marketing strategy."