-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathchemicals_and_resources.json
2113 lines (2113 loc) · 71.5 KB
/
chemicals_and_resources.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
[
{
"id": "anesthetic",
"type": "AMMO",
"name": { "str_sp": "anesthetic" },
"category": "chems",
"description": "A variety of powerful hypnotic, analgesic, and stimulative drugs. It's intended for use in specialized medical equipment, and can't be administered manually. You can reload an anesthesia kit with it.",
"weight": "714 mg",
"volume": "540 ml",
"price": "83 USD 33 cent",
"price_postapoc": "30 USD",
"ammo_type": "anesthetic",
"count": 420,
"phase": "liquid",
"container": "jar_3l_glass_sealed",
"sealed": false,
"symbol": "!",
"color": "cyan",
"looks_like": "ether"
},
{
"type": "COMESTIBLE",
"id": "fert_supplement",
"name": { "str_sp": "fertility supplement" },
"//": "Right now, it's just used in a quest, and should not spawn naturally.",
"flags": [ "EDIBLE_FROZEN", "WATER_DISSOLVE", "NO_INGEST" ],
"weight": "1 g",
"color": "pink",
"container": "bottle_plastic_pill_supplement",
"comestible_type": "FOOD",
"symbol": "%",
"calories": 10,
"description": "A pill for those looking to have children. It is of no use to you.",
"price": "1 cent",
"volume": "10 ml"
},
{
"type": "AMMO",
"id": "chem_sulphur",
"ammo_type": "components",
"category": "chems",
"price": "50 cent",
"price_postapoc": "50 cent",
"name": { "str_sp": "sulfur" },
"symbol": "=",
"color": "yellow",
"flags": [ "EDIBLE_FROZEN", "NO_INGEST" ],
"description": "A handful of pure sulfur. Primarily used to make battery acid, sulfur is sometimes used as fuel for explosives. Can be burned to produce acidic smoke that is deadly to bacteria and humans alike, or oxidized to make paper-bleaching agents. It also serves as a basis for many kinds of fungicide.",
"material": [ "powder" ],
"volume": "16 ml",
"weight": "320 mg",
"//": "Density: 2g/cm3. NOTE: Weights for chemical powders are 1/100 mol. Weights are given for ONE UNIT. Volume is for all units.",
"container": "bottle_plastic_small",
"count": 100
},
{
"type": "AMMO",
"id": "chunk_sulfur",
"category": "chems",
"price": "50 cent",
"price_postapoc": "1 USD",
"name": { "str": "chunk of sulfur", "str_pl": "chunks of sulfur" },
"symbol": "*",
"color": "yellow",
"description": "A chunk of pure sulfur. Break it up to use it.",
"material": [ "stone" ],
"volume": "250 ml",
"weight": "500 g",
"//": "density is around 2g/cm3",
"ammo_type": "components",
"melee_damage": { "bash": 1 }
},
{
"type": "AMMO",
"id": "material_cement",
"category": "spare_parts",
"price": "2 USD",
"price_postapoc": "10 cent",
"name": { "str_sp": "cement powder" },
"symbol": "=",
"color": "dark_gray",
"description": "Portland is most likely long gone, but its memory persists in cement. This ubiquitous binder can be used for all kinds of advanced masonry. Just add water.",
"material": [ "cement" ],
"volume": "5 ml",
"weight": "7200 mg",
"ammo_type": "components",
"count": 1
},
{
"type": "AMMO",
"id": "material_gravel",
"category": "spare_parts",
"price": "0 cent",
"price_postapoc": "0 cent",
"name": { "str_sp": "gravel", "ctxt": "material" },
"symbol": "=",
"color": "dark_gray",
"description": "A handful of gravel, smaller than pebbles but larger than sand.",
"material": [ "stone" ],
"//": "density: 1.6 g/cm3",
"volume": "5 ml",
"weight": "8 g",
"ammo_type": "components",
"count": 1,
"melee_damage": { "bash": 1 }
},
{
"type": "AMMO",
"id": "shredded_rubber",
"category": "spare_parts",
"price": "0 cent",
"price_postapoc": "0 cent",
"name": { "str_sp": "shredded rubber" },
"symbol": "=",
"color": "dark_gray",
"description": "A handful of shredded rubber, usable as a mulch now.",
"material": [ "rubber" ],
"volume": "250 ml",
"weight": "6 g",
"ammo_type": "components",
"count": 50
},
{
"type": "AMMO",
"id": "material_limestone",
"category": "chems",
"price": "50 cent",
"price_postapoc": "10 cent",
"name": { "str_sp": "limestone" },
"symbol": "=",
"color": "dark_gray",
"description": "A handful of small chunks of limestone. Useful for experiments at science fairs, but pretty useless as ammo. Maybe something could be crafted from this stuff…",
"material": [ "stone" ],
"volume": "250 ml",
"weight": "14 g",
"ammo_type": "components",
"count": 50,
"melee_damage": { "bash": 1 }
},
{
"type": "AMMO",
"id": "material_quicklime",
"category": "chems",
"price": "1 USD",
"price_postapoc": "10 cent",
"name": { "str_sp": "quicklime" },
"symbol": "=",
"color": "dark_gray",
"description": "The product of burning limestone, this white powder is a crucial ingredient in making cement. That said, it is also extremely caustic and will cause severe burns to any tissue it comes in contact with. This property could probably be exploited.",
"material": [ "quicklime" ],
"volume": "5 ml",
"weight": "16700 mg",
"ammo_type": "components",
"count": 1
},
{
"type": "AMMO",
"id": "chem_slaked_lime",
"category": "chems",
"price": "5 USD",
"price_postapoc": "5 USD",
"name": { "str_sp": "slaked lime" },
"symbol": "=",
"color": "white",
"description": " A handful of slaked lime, a white odorless powder with many uses. Also known as calcium hydroxide.",
"material": [ "slaked_lime" ],
"volume": "250 ml",
"weight": "2211 mg",
"ammo_type": "components",
"count": 250
},
{
"type": "AMMO",
"id": "material_sand",
"category": "spare_parts",
"price": "0 cent",
"price_postapoc": "0 cent",
"name": { "str_sp": "sand", "ctxt": "material" },
"symbol": "=",
"color": "dark_gray",
"description": "A handful of New England sand. If you had a stoked furnace, you could turn it into glass. Otherwise, it's only good for making cement.",
"material": [ "sand" ],
"volume": "5 ml",
"weight": "8 g",
"ammo_type": "components",
"count": 1
},
{
"type": "AMMO",
"id": "material_soil",
"category": "spare_parts",
"price": "0 cent",
"price_postapoc": "0 cent",
"name": { "str_sp": "soil" },
"symbol": "=",
"color": "brown",
"description": "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, silt and clay is ideal for growing plants.",
"material": [ "soil" ],
"volume": "5 L",
"weight": "6500 g",
"ammo_type": "components",
"stack_size": 1
},
{
"type": "GENERIC",
"id": "material_shrd_limestone",
"symbol": ",",
"color": "light_gray",
"name": { "str": "limestone shard" },
"category": "chems",
"description": "A small shard of limestone. Pretty flimsy and not much of a weapon, but its alkaline properties may yet find some use.",
"price": "5 USD",
"price_postapoc": "10 cent",
"material": [ "stone" ],
"weight": "2700 g",
"volume": "1 L",
"melee_damage": { "bash": 2 }
},
{
"type": "GENERIC",
"id": "material_rocksalt",
"category": "food",
"price": "50 cent",
"price_postapoc": "1 USD",
"name": { "str_sp": "rock salt" },
"symbol": "*",
"color": "light_gray",
"description": "A handful of rock salt crystals. Could be refined into table salt.",
"material": [ "salt", "stone" ],
"volume": "3500 ml",
"weight": "650 g",
"melee_damage": { "bash": 1 }
},
{
"type": "GENERIC",
"id": "material_rhodonite",
"category": "chems",
"price": "2 USD 50 cent",
"price_postapoc": "1 USD",
"name": { "str_sp": "rhodonite" },
"symbol": "*",
"color": "red",
"description": "A chunk of rhodonite. It has manganese dioxide covering and going through it in veins, which can be obtained using a chisel.",
"material": [ "rhodonite" ],
"volume": "250 ml",
"weight": "915 g",
"//": "density: 3.57–3.76 g/cm3",
"melee_damage": { "bash": 1 }
},
{
"type": "GENERIC",
"id": "material_zincite",
"category": "chems",
"price": "2 USD 50 cent",
"price_postapoc": "1 USD",
"name": { "str_sp": "zincite" },
"symbol": "*",
"color": "red",
"description": "A chunk of zincite. Could be refined into zinc oxide, then into zinc by reduction with a source of carbon.",
"material": [ "zincite" ],
"volume": "250 ml",
"weight": "1412 g",
"melee_damage": { "bash": 1 }
},
{
"type": "COMESTIBLE",
"id": "bleach",
"name": { "str_sp": "bleach" },
"weight": "138 g",
"color": "white",
"flags": [ "CORROSIVE", "NUTRIENT_OVERRIDE" ],
"container": "jug_plastic",
"sealed": false,
"symbol": "~",
"description": "Sodium hypochlorite, a common household cleaning agent.",
"comestible_type": "INVALID",
"price": "67 cent",
"price_postapoc": "50 cent",
"//": "$0.67 per charge for a $10 15-charge gallon of bleach.",
"volume": "250 ml",
"phase": "liquid",
"charges": 2,
"category": "chems",
"freezing_point": -8,
"conditional_names": [ { "type": "FLAG", "condition": "DIRTY", "name": "bleach spill" } ]
},
{
"type": "AMMO",
"id": "ammonia_liquid",
"name": { "str_sp": "liquid ammonia" },
"weight": "124 g",
"color": "white",
"flags": [ "CORROSIVE" ],
"container": "pressure_tank",
"sealed": false,
"symbol": "~",
"description": "Anhydrous ammonia, a useful chemical compound. It must be stored under pressure or refrigerated. Don't even think about drinking it.",
"price": "67 cent",
"price_postapoc": "50 cent",
"volume": "250 ml",
"phase": "liquid",
"stack_size": 1,
"category": "chems",
"ammo_type": "ammonia_liquid"
},
{
"type": "COMESTIBLE",
"id": "ammonia_hydroxide",
"name": { "str_sp": "ammonia solution" },
"weight": "124 g",
"color": "white",
"use_action": [ "BLECH" ],
"flags": [ "CORROSIVE" ],
"container": "jug_plastic",
"sealed": false,
"symbol": "~",
"description": "Ammonium hydroxide, a common household cleaning agent.",
"comestible_type": "INVALID",
"price": "67 cent",
"price_postapoc": "50 cent",
"volume": "250 ml",
"phase": "liquid",
"charges": 2,
"category": "chems",
"freezing_point": -78
},
{
"type": "COMESTIBLE",
"id": "fertilizer_liquid",
"name": { "str_sp": "liquid fertilizer" },
"weight": "67 g",
"color": "yellow",
"flags": [ "FERTILIZER", "NUTRIENT_OVERRIDE" ],
"use_action": [ "PLANTBLECH" ],
"container": "jug_plastic",
"sealed": false,
"comestible_type": "DRINK",
"symbol": "~",
"quench": -10,
"healthy": -1,
"calories": 260,
"description": "A nutrient-rich elixir for plants.",
"price": "10 USD",
"price_postapoc": "1 USD",
"volume": "250 ml",
"phase": "liquid",
"charges": 4,
"category": "chems",
"fun": -30
},
{
"type": "COMESTIBLE",
"id": "fermentable_liquid_mixture",
"name": { "str_sp": "fermentable liquid mixture" },
"volume": "500 ml",
"weight": "500 g",
"description": "A mixture of various organic wastes and water. Wait about two months for them to be fermented in a tank. Also, biogas production will start after one month.",
"copy-from": "fertilizer_liquid",
"price": "0 cent",
"price_postapoc": "0 cent",
"flags": [ "NUTRIENT_OVERRIDE", "TRADER_AVOID" ],
"compostable": { "time": "60 days", "results": { "fermented_fertilizer_liquid": 1, "biogas": 250 } },
"charges": 1
},
{
"type": "COMESTIBLE",
"id": "fermentable_fish_mixture",
"name": { "str_sp": "fermentable fish mixture" },
"description": "A mixture of fish, sugars, and water. Wait about two months for them to be fermented in an open tank.",
"copy-from": "fermentable_liquid_mixture",
"use_action": {
"type": "delayed_transform",
"target": "fermented_fertilizer_liquid",
"transform_age": 4320000,
"not_ready_msg": "The overpowering smell of the fermenting fish liquid makes it clear that it is not ready for use."
}
},
{
"type": "COMESTIBLE",
"id": "fermented_fertilizer_liquid",
"name": { "str_sp": "fermented fertilizer liquid" },
"volume": "500 ml",
"weight": "400 g",
"description": "A mixture of fermented biomass, will become liquid fertilizer after simple treatment.",
"copy-from": "fertilizer_liquid",
"price": "0 cent",
"price_postapoc": "0 cent",
"flags": [ "NUTRIENT_OVERRIDE", "TRADER_AVOID" ],
"charges": 1
},
{
"type": "COMESTIBLE",
"id": "fertilizer_commercial",
"name": { "str_sp": "commercial fertilizer" },
"weight": "27 g",
"color": "yellow",
"flags": [ "FERTILIZER" ],
"use_action": [ "PLANTBLECH" ],
"container": "bag_canvas",
"comestible_type": "FOOD",
"symbol": "~",
"quench": -10,
"healthy": -1,
"calories": 43,
"description": "Nutrient-rich granules for plants.",
"price": "16 cent",
"//2": "0.8 g/cm3",
"price_postapoc": "16 cent",
"material": [ "powder" ],
"volume": "33 ml",
"category": "chems",
"fun": -15
},
{
"type": "COMESTIBLE",
"id": "fungicide",
"category": "chems",
"name": { "str_sp": "fungicide" },
"weight": "1 g",
"//": "Typically sold in larger quantities, but that's handled in the charge count.",
"color": "pink",
"flags": [ "EDIBLE_FROZEN" ],
"use_action": [ "FUNGICIDE" ],
"stim": -7,
"container": "bag_plastic_small",
"comestible_type": "MED",
"symbol": "!",
"healthy": -7,
"description": "Agricultural-grade chemical anti-fungal powder designed to destroy infections in plants.",
"price": "5 cent",
"price_postapoc": "5 cent",
"material": [ "powder" ],
"volume": "1 ml",
"//2": "Previously 10 doses to a gram, so about 400 to the pound.",
"fun": -15
},
{
"type": "GENERIC",
"id": "insecticide",
"category": "chems",
"name": { "str_sp": "insecticide" },
"weight": "50 g",
"color": "pink",
"looks_like": "fungicide",
"container": "bag_plastic_small",
"symbol": "!",
"description": "Agricultural-grade chemical insecticide powder designed to eradicate insect pests.",
"price": "5 cent",
"price_postapoc": "5 cent",
"material": [ "powder" ],
"volume": "50 ml"
},
{
"type": "COMESTIBLE",
"id": "salt_water",
"name": { "str_sp": "salt water" },
"material": [ { "type": "water", "portion": 877 }, { "type": "salt", "portion": 123 } ],
"weight": "260 g",
"color": "light_cyan",
"container": "bottle_plastic",
"sealed": false,
"comestible_type": "DRINK",
"symbol": "~",
"quench": -30,
"healthy": -1,
"description": "Water with salt added. Not good for drinking.",
"flags": [ "NUTRIENT_OVERRIDE", "NO_AUTO_CONSUME" ],
"price": "0 cent",
"price_postapoc": "0 cent",
"volume": "250 ml",
"charges": 1,
"phase": "liquid",
"category": "chems",
"freezing_point": -2,
"fun": -1
},
{
"type": "COMESTIBLE",
"id": "soapy_water",
"name": { "str_sp": "soapy water" },
"material": [ "water" ],
"weight": "260 g",
"color": "light_cyan",
"container": "bottle_plastic",
"sealed": false,
"comestible_type": "INVALID",
"symbol": "~",
"quench": -5,
"healthy": -1,
"description": "Water with soap added. Not good for drinking.",
"price": "0 cent",
"price_postapoc": "0 cent",
"volume": "250 ml",
"charges": 1,
"phase": "liquid",
"category": "chems",
"freezing_point": -2,
"fun": -1
},
{
"type": "COMESTIBLE",
"id": "sewage",
"name": { "str_sp": "sewage sample" },
"weight": "280 g",
"color": "green",
"use_action": [ "SEWAGE" ],
"container": "bottle_plastic",
"sealed": false,
"symbol": "~",
"description": "A sample of sewage from a treatment plant. Gross.",
"comestible_type": "INVALID",
"price": "0 cent",
"price_postapoc": "0 cent",
"volume": "250 ml",
"charges": 1,
"phase": "liquid",
"category": "chems",
"fun": -20
},
{
"type": "AMMO",
"id": "chem_aluminium_powder",
"category": "chems",
"price": "5 USD",
"price_postapoc": "5 USD",
"name": { "str_sp": "aluminum powder" },
"symbol": "=",
"color": "white",
"description": "A handful of finely-ground aluminum powder. This strong reducing agent was used in combination with various oxidants for chemical welding and explosives alike. Just before the Cataclysm, however, it was the basis of virtually all commercial metallic-hued paints and anti-corrosive coatings.",
"material": [ "powder" ],
"volume": "250 ml",
"weight": "1760 mg",
"ammo_type": "components",
"container": "bag_plastic_small",
"count": 100
},
{
"type": "AMMO",
"id": "chem_nickel_powder",
"category": "chems",
"price": "12 cent",
"price_postapoc": "2 cent",
"name": { "str_sp": "nickel powder" },
"symbol": "=",
"color": "white",
"description": "A handful of silvery-white metallic powder composed of nickel. Common industrial uses include production of stainless steel as well as other alloys.",
"container": "bag_plastic_small",
"material": [ "powder_nonflam" ],
"volume": "1 ml",
"weight": "36 mg",
"ammo_type": "components",
"count": 1
},
{
"type": "AMMO",
"id": "chem_zinc_powder",
"category": "chems",
"price": "6 USD",
"price_postapoc": "2 USD 50 cent",
"name": { "str_sp": "zinc powder" },
"symbol": "=",
"color": "white",
"description": "A handful of zinc powder. While commercially used mostly in cosmetics and for paints, hobbyists used to mix it with sulfur to make basic rocket fuel or a smokescreen. When treated with a strong acid, it will produce hydrogen.",
"material": [ "powder" ],
"volume": "9 ml",
"weight": "654 mg",
"//": "Atomic weight 65.39, 0.01mol -> 653.9mg",
"//2": "Density 7.14g/cm³: 654mg/unit ~ 65.4g @ stack 100 -> 9.159ml",
"ammo_type": "components",
"container": "bottle_plastic_small",
"count": 100
},
{
"type": "AMMO",
"id": "chem_zinc_oxide",
"category": "chems",
"price": "2 USD",
"price_postapoc": "2 USD 50 cent",
"name": { "str_sp": "zinc oxide" },
"symbol": "=",
"color": "white",
"description": "A handful of zinc oxide. It can be reduced into zinc, or used for some other reactions of its own.",
"material": [ "powder_nonflam" ],
"volume": "15 ml",
"weight": "814 mg",
"//": "Density: 5.606 g/cm3: 814 mg/unit ~ 81.4g @ stack 100 -> 14.521ml",
"ammo_type": "components",
"container": "bottle_plastic_small",
"count": 100
},
{
"type": "AMMO",
"id": "chem_manganese_dioxide",
"category": "chems",
"price": "6 USD",
"price_postapoc": "1 USD",
"name": { "str_sp": "manganese dioxide" },
"symbol": "=",
"color": "white",
"description": "A handful of manganese dioxide powder. Occurring naturally in the mineral pyrolusite, it is used commercially in the production of alkaline and zinc-carbon batteries.",
"material": [ "powder_nonflam" ],
"volume": "17 ml",
"weight": "869 mg",
"//": "density: 5.026 g/cm3",
"ammo_type": "components",
"container": "bottle_plastic_small",
"count": 100
},
{
"type": "AMMO",
"id": "cathod_mix",
"category": "chems",
"price_postapoc": "1 USD",
"name": { "str_sp": "acidic electrolyte paste" },
"symbol": "=",
"color": "dark_gray",
"description": "A moisturized mixture of zinc chloride and manganese dioxide, slightly acidic. It can be used in the production of zinc-carbon batteries.",
"material": [ "powder_nonflam" ],
"volume": "151 ml",
"weight": "500 mg",
"ammo_type": "components",
"count": 1000
},
{
"type": "AMMO",
"id": "chem_ferric_chloride",
"category": "chems",
"price": "30 USD",
"price_postapoc": "5 USD",
"name": { "str_sp": "ferric chloride" },
"symbol": "=",
"color": "green",
"description": "A handful of dark green crystalline powder, with a weak pungent smell similar to that of hydrochloric acid. Commonly used as a Lewis acid for catalyzing various chemical reactions.",
"container": "bag_plastic_small",
"material": [ "powder_nonflam" ],
"volume": "250 ml",
"weight": "2900 mg",
"ammo_type": "components",
"count": 250
},
{
"type": "AMMO",
"id": "chem_antimony_trichloride",
"category": "chems",
"price": "30 USD",
"price_postapoc": "5 USD",
"name": { "str_sp": "antimony trichloride" },
"symbol": "=",
"color": "white",
"description": "A handful of soft, colorless powder with a sharp pungent odor, also known as butter of antimony. It's a catalyst for polymerization, hydrocracking, and chlorination reactions, and has some other niche uses.",
"container": "bag_plastic_small",
"material": [ "powder_nonflam" ],
"volume": "250 ml",
"weight": "3140 mg",
"ammo_type": "components",
"count": 250
},
{
"type": "AMMO",
"id": "chem_potassium_chloride",
"category": "chems",
"price": "6 USD",
"price_postapoc": "1 USD",
"name": { "str_sp": "potassium chloride" },
"symbol": "=",
"color": "white",
"description": "A handful of potassium chloride. Although it occurs naturally in the mineral sylvite, it can be produced as a byproduct of the reaction of saltpeter and hydrochloric acid. It can be used for making fertilizer, or potassium hydroxide by way of electrolysis.",
"material": [ "powder_nonflam" ],
"volume": "38 ml",
"weight": "746 mg",
"//": "density: 1.984 g/cm3",
"ammo_type": "components",
"container": "bottle_plastic_small",
"count": 100
},
{
"type": "AMMO",
"id": "chem_potassium_hydroxide",
"category": "chems",
"price": "6 USD",
"price_postapoc": "1 USD",
"name": { "str_sp": "potassium hydroxide" },
"symbol": "=",
"color": "white",
"description": "A handful of potassium hydroxide. Commonly called caustic potash, it was mainly used industrially for its caustic nature. It can be used as an electrolyte in alkaline batteries, among other applications.",
"material": [ "powder_nonflam" ],
"volume": "26 ml",
"weight": "561 mg",
"//": "density: 2.12 g/cm3 (25 °C)",
"ammo_type": "components",
"container": "bottle_plastic_small",
"count": 100
},
{
"type": "COMESTIBLE",
"id": "chem_sulphuric_acid",
"category": "chems",
"price": "2 USD 50 cent",
"price_postapoc": "1 USD",
"name": { "str_sp": "sulfuric acid" },
"symbol": "=",
"color": "white",
"flags": [ "DROP_ACTION_ONLY_IF_LIQUID" ],
"description": "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly to organic matter and evil clowns. Although used to prepare a number of chemicals, it is mostly known as battery acid, due to its widest commercial application.",
"comestible_type": "INVALID",
"material": [ "acid" ],
"volume": "250 ml",
"weight": "455 g",
"charges": 1,
"phase": "liquid",
"container": "bottle_glass",
"freezing_point": -36,
"drop_action": { "type": "emit_actor", "emits": [ "emit_acid_drop" ], "scale_qty": true }
},
{
"type": "COMESTIBLE",
"id": "chem_muriatic_acid",
"category": "chems",
"price": "2 USD 50 cent",
"price_postapoc": "1 USD",
"name": { "str_sp": "hydrochloric acid" },
"symbol": "=",
"color": "white",
"flags": [ "DROP_ACTION_ONLY_IF_LIQUID" ],
"description": "Hydrochloric acid, also known as muriatic acid. It is a strong acid that has a distinctive smell, important and frequently used ever since its discovery. It still has a vast multitude of uses.",
"comestible_type": "INVALID",
"volume": "250 ml",
"weight": "202 g",
"charges": 1,
"phase": "liquid",
"container": "bottle_glass",
"freezing_point": -50,
"drop_action": { "type": "emit_actor", "emits": [ "emit_acid_drop" ], "scale_qty": true }
},
{
"type": "AMMO",
"id": "chem_acetone",
"category": "chems",
"price": "50 cent",
"price_postapoc": "1 USD",
"name": { "str_sp": "acetone" },
"symbol": "=",
"color": "white",
"description": "Acetone, best known as the primary constituent of most nail polish removers. Flammable, and can be easily used for potent homemade explosives, as demonstrated by the terrorist attacks of 2016.",
"volume": "250 ml",
"weight": "190 g",
"material": [ "acetone" ],
"ammo_type": "components",
"phase": "liquid",
"container": "bottle_glass"
},
{
"type": "COMESTIBLE",
"id": "chem_nitric_acid",
"category": "chems",
"price": "3 USD",
"price_postapoc": "1 USD",
"name": { "str_sp": "nitric acid" },
"symbol": "=",
"color": "white",
"flags": [ "DROP_ACTION_ONLY_IF_LIQUID" ],
"description": "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly used in the production of synthetic fertilizers, for the etching of circuit boards, and in woodworking. Remains quite useful both for making a vast array of pyrotechnic and explosive agents and as a direct weapon: not many beings enjoy being doused in nitric acid.",
"comestible_type": "INVALID",
"material": [ "acid" ],
"volume": "250 ml",
"weight": "375 g",
"charges": 1,
"phase": "liquid",
"container": "bottle_glass",
"freezing_point": -42,
"drop_action": { "type": "emit_actor", "emits": [ "emit_acid_drop" ], "scale_qty": true }
},
{
"type": "AMMO",
"id": "chem_chromium_oxide",
"category": "chems",
"price": "5 USD",
"price_postapoc": "1 USD",
"name": { "str_sp": "chromium oxide" },
"symbol": "=",
"color": "green",
"description": "A handful of chromium oxide. This substance, typically known as the only stable green pigment for paints, is also a mild oxidizer, which can be mixed with aluminum powder to make thermite for welding. If one had access to a CVD machine and a laboratory worth of reagents, they might be able to produce very durable ceramic layers.",
"material": [ "powder_nonflam" ],
"volume": "29 ml",
"weight": "1520 mg",
"//": "density: 5.22 g/cm3",
"ammo_type": "components",
"container": "bottle_plastic_small",
"count": 100
},
{
"type": "AMMO",
"id": "cac2powder",
"category": "chems",
"price": "2 USD",
"price_postapoc": "5 USD",
"name": { "str_sp": "calcium carbide premix" },
"symbol": "=",
"color": "dark_gray",
"description": "A powdered mixture of coke and lime ready to be smelted into usable calcium carbide in an arc furnace.",
"material": [ "powder_nonflam" ],
"phase": "solid",
"//1": "For sanity, make each unit of this equivalent to 1 unit (0.01 mole) of chem_carbide",
"//2": "1 mole CaO equiv. of quicklime: 56.0774g, 16.78ml if solid chunk",
"//3": "3 moles C equiv. of coal_lump (anthracite, 90% carbon): (3×12.011/0.9) = 40.03667g, 26.69ml if solid chunk",
"//4": "56.0774 + 40.0367 = 96.1141g (100 units); 16.78 + 26.69 = 43.47ml, round to 50 due to powder form",
"volume": "50 ml",
"weight": "961 mg",
"ammo_type": "components",
"count": 100
},
{
"type": "AMMO",
"id": "chem_carbide",
"category": "chems",
"price": "75 cent",
"price_postapoc": "1 USD",
"name": { "str_sp": "calcium carbide" },
"symbol": "=",
"color": "white",
"description": "A handful of calcium carbide, giving off a faint, garlic-like smell. Commercially, calcium carbide was used for on-the-spot manufacture of acetylene and historically to power acetylene lamps. If mixed with water and sealed, it will explode with little strength, but with a relatively loud noise that might be useful as a distraction.",
"material": [ "powder" ],
"volume": "29 ml",
"weight": "641 mg",
"//": "density: 2.22 g/cm3",
"ammo_type": "components",
"container": "bottle_plastic_small",
"count": 100
},
{
"type": "AMMO",
"id": "chem_caco3",
"category": "chems",
"price": "75 cent",
"price_postapoc": "1 USD",
"name": { "str_sp": "calcium carbonate" },
"symbol": "=",
"color": "white",
"description": "A handful of calcium carbonate powder, typically derived from lime or shells. Useful for a number of roles, such as sugar production, fracking, construction, paint additives and antacid medicine.",
"material": [ "powder" ],
"volume": "29 ml",
"weight": "783 mg",
"//": "density: 2.71 g/cm3",
"ammo_type": "components",
"container": "bottle_plastic_small",
"count": 100
},
{
"type": "AMMO",
"id": "chem_hexamine",
"category": "chems",
"price": "20 USD",
"price_postapoc": "1 USD",
"name": { "str_sp": "hexamine" },
"symbol": "=",
"color": "red",
"description": "A handful of waxy hexamine tablets which could be broken up into smaller crumbs if needed. This ubiquitous fuel was used to start up almost every garden grill, and no 'real' camping trip could do its cooking without it, until the Cataclysm. Nowadays, it is even more valuable than before, being the key component in the preparation of several military-grade explosives.",
"//": "base density of 1.33g/ml and energy of ~40kJ per unit",
"//1": "hexamine tablets sold commercially for 13 usd per 216 grams (162u)",
"material": [ "powder" ],
"volume": "200 ml",
"weight": "1330 mg",
"ammo_type": "esbit",
"container": "box_small",
"count": 1620,
"stack_size": 200
},
{
"type": "AMMO",
"id": "chem_hydrogen_peroxide_conc",
"category": "chems",
"price": "10 USD",
"price_postapoc": "1 USD",
"name": { "str_sp": "hydrogen peroxide (concentrated)" },
"symbol": "~",
"color": "white",
"description": "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing in contact with most reducing agents. Can be used as rocket fuel or to make high explosives. Causes severe burns to any organic matter and may ignite it on contact.",
"volume": "250 ml",
"weight": "325 g",
"ammo_type": "components",
"phase": "liquid",
"container": "bottle_glass"
},
{
"type": "GENERIC",
"id": "plutonium",
"name": { "str_sp": "plutonium" },
"category": "chems",
"//0": "Plutonium is about 5000 USD/gram",
"price": "4950 kUSD",
"//1": "Nobody wants raw plutonium, unless they have a deathwish",
"price_postapoc": "0 cent",
"symbol": ",",
"color": "light_gray",
"description": "A chunk of unshielded plutonium. You should probably get very far away from this, if you enjoy not being irradiated.",
"flags": [ "TRADER_AVOID", "LEAK_ALWAYS", "RADIOACTIVE" ],
"volume": "50 ml",
"weight": "990 g"
},
{
"type": "GENERIC",
"id": "uranium",
"name": { "str_sp": "uranium" },
"category": "chems",
"//0": "Uranium is about 40 USD/kg",
"price": "38 USD 12 cent",
"//1": "Nobody wants raw uranium, unless they have a deathwish",
"price_postapoc": "0 cent",
"symbol": ",",
"color": "light_gray",
"description": "Some uranium. You should probably get very far away from this, if you enjoy not being irradiated.",
"flags": [ "TRADER_AVOID", "LEAK_ALWAYS", "RADIOACTIVE" ],
"volume": "50 ml",
"weight": "953 g"
},
{
"type": "AMMO",
"id": "chem_ammonium_nitrate",
"category": "chems",
"price": "1 USD",
"price_postapoc": "5 USD",
"name": { "str_sp": "ammonium nitrate" },
"symbol": "=",
"color": "white",
"description": "A handful of ammonium nitrate. This white, crystalline powder is commonly used as a component of fertilizers and explosives. Could also be dissolved in water to sharply lower its temperature, but is there any use for this quality in this new world?",
"material": [ "powder_nonflam" ],
"volume": "290 ml",
"weight": "1 g",
"ammo_type": "components",
"container": "bag_canvas",
"count": 500
},
{
"type": "AMMO",
"id": "chem_ammonium_nitrate_pellets",
"looks_like": "fertilizer_commercial",
"category": "chems",
"price": "3 USD 9 cent",
"price_postapoc": "3 USD 9 cent",
"name": { "str_sp": "ammonium nitrate pellets" },
"symbol": "=",
"color": "white",
"description": "A handful of ammonium nitrate pellets. These pellets are commonly used as a component of fertilizers and explosives. Could also be dissolved in water to sharply lower its temperature, but is there any use for this quality in this new world?",
"material": [ "powder_nonflam" ],
"volume": "625 ml",
"weight": "1 g",
"ammo_type": "components",
"container": "bag_canvas",
"count": 500
},
{
"type": "AMMO",
"id": "chem_saltpetre",
"category": "chems",
"price": "2 USD",
"price_postapoc": "5 USD",
"name": { "str_sp": "saltpeter" },
"symbol": "=",
"color": "white",
"description": "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous nitrate is the principal constituent of black gunpowder and simple rocket propellants, such as rocket candy.",
"material": [ "powder_nonflam" ],
"volume": "250 ml",
"weight": "5275 mg",
"ammo_type": "components",
"container": "bag_canvas",
"count": 50
},
{
"type": "AMMO",
"id": "material_niter",
"category": "spare_parts",
"price": "75 cent",
"price_postapoc": "1 USD",
"name": { "str_sp": "niter" },
"symbol": "*",
"color": "white",
"description": "A large crystal of niter, the mineral form of potassium nitrate. It can be processed into saltpeter.",
"material": [ "powder_nonflam" ],
"volume": "1250 ml",
"weight": "790 g",
"ammo_type": "components",
"melee_damage": { "bash": 1 }
},
{
"type": "AMMO",
"id": "chem_aluminium_sulphate",
"category": "chems",
"price": "3 USD",
"price_postapoc": "1 USD",
"name": { "str_sp": "aluminum sulfate" },
"symbol": "=",
"color": "white",
"description": "Several crystals of aluminum sulfate. Historically, an agent for purifying water and as molluscicide, due to the fact that it degenerates their slime. Just before the Cataclysm, its main uses were for adjusting the acidity of soil and as an additive to baking powder. If mixed with a strong acid, it could be used to saturate soil with aluminum, causing all but the most resistant of plants to wither and die.",
"material": [ "powder_nonflam" ],
"volume": "250 ml",
"weight": "13350 mg",
"ammo_type": "components",
"container": "bag_canvas",
"count": 50
},