-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
tools.json
7413 lines (7413 loc) · 229 KB
/
tools.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": "EMPbomb",
"type": "TOOL",
"category": "weapons",
"name": "EMP grenade",
"description": "This is a grenade that generates a electromagnetic pulse with a low-inductance capacitor bank discharged into a single-loop antenna. Use this item to pull the pin and light the fuse, turning it into an active EMP grenade. You will then have three turns before it detonates, creating an EMP field that damages robots and drains bionic energy.",
"weight": "400 g",
"volume": "250 ml",
"price": 6000,
"to_hit": -1,
"bashing": 5,
"material": [ "steel", "plastic" ],
"symbol": "*",
"color": "cyan",
"use_action": {
"target": "EMPbomb_act",
"msg": "You pull the pin on the EMP grenade.",
"target_charges": 3,
"active": true,
"menu_text": "Pull pin",
"type": "transform"
},
"flags": [ "RADIO_MODABLE", "RADIO_INVOKE_PROC", "BOMB", "GRENADE" ]
},
{
"id": "riding_saddle",
"type": "TOOL",
"name": "riding saddle",
"description": "A saddle that can be placed on a tamed animal that is capable of being ridden.",
"weight": "800 g",
"volume": "2 L",
"price": 0,
"to_hit": -1,
"bashing": 5,
"material": [ "leather" ],
"symbol": "M",
"color": "yellow"
},
{
"id": "EMPbomb_act",
"type": "TOOL",
"category": "weapons",
"name": "active EMP grenade",
"description": "This EMP grenade is active, and will shortly detonate, creating a large EMP field that damages robots and drains bionic energy. You may not want to be holding it much longer.",
"weight": "400 g",
"volume": "250 ml",
"price": 0,
"to_hit": -1,
"bashing": 5,
"material": [ "steel", "plastic" ],
"symbol": "*",
"color": "cyan",
"initial_charges": 3,
"max_charges": 3,
"turns_per_charge": 1,
"use_action": {
"type": "explosion",
"draw_explosion_radius": 4,
"draw_explosion_color": "light_blue",
"emp_blast_radius": 4,
"sound_volume": 0,
"sound_msg": "Tick.",
"no_deactivate_msg": "You've already pulled the %s's pin, try throwing it instead."
},
"flags": [ "TRADER_AVOID" ]
},
{
"id": "LAW_Packed",
"type": "TOOL",
"category": "guns",
"name": "packed M72 LAW",
"name_plural": "packed M72 LAWs",
"description": "This is a M72 LAW, packed in its storage form. Use it to pop it out and make it ready to fire. Once it is activated, it cannot be repacked.",
"weight": "2500 g",
"volume": "1500 ml",
"price": 200000,
"bashing": 6,
"material": "aluminum",
"symbol": ")",
"color": "green",
"use_action": {
"target": "LAW",
"msg": "You pull the activating lever, readying the LAW to fire.",
"target_charges": 1,
"target_ammo": "66mm_HEAT",
"menu_text": "Activate",
"type": "transform"
}
},
{
"id": "hand_pump",
"type": "TOOL",
"symbol": "/",
"color": "blue",
"name": "hand pump",
"description": "This pump is suitable for pumping air into inflatable objects.",
"price": 400,
"material": [ "aluminum", "plastic" ],
"weight": "113 g",
"volume": "500 ml",
"bashing": 4,
"to_hit": -1,
"qualities": [ [ "PRESSURIZATION", 1 ] ]
},
{
"id": "UPS_off",
"type": "TOOL",
"name": "UPS",
"name_plural": "UPS's",
"description": "This is a unified power supply, or UPS. It is a device developed jointly by military and scientific interests for use in combat and the field. The UPS is designed to power bionics, armor and some guns, but drains batteries quickly.",
"weight": "680 g",
"volume": "2500 ml",
"price": 280000,
"to_hit": -1,
"bashing": 8,
"material": [ "aluminum", "plastic" ],
"symbol": ";",
"color": "light_gray",
"ammo": "battery",
"magazines": [
[ "battery", [ "heavy_plus_battery_cell", "heavy_battery_cell", "heavy_atomic_battery_cell", "heavy_disposable_cell" ] ]
],
"magazine_well": 4,
"flags": [ "IS_UPS" ]
},
{
"id": "acidbomb",
"type": "TOOL",
"category": "weapons",
"name": "acid bomb",
"description": "This is a fragile container filled with acid. Throw it to spill out a pool of potent acid.",
"weight": "650 g",
"volume": "500 ml",
"price": 5000,
"to_hit": -1,
"bashing": 4,
"material": "glass",
"symbol": "*",
"color": "yellow",
"use_action": "ACIDBOMB_ACT",
"flags": [ "ACT_ON_RANGED_HIT", "NPC_THROWN" ]
},
{
"id": "adv_UPS_off",
"type": "TOOL",
"name": "advanced UPS",
"name_plural": "advanced UPS's",
"description": "This is an advanced version of the unified power supply, or UPS. This device has been significantly redesigned to provide better efficiency as well as to consume plutonium fuel cells rather than batteries. Sadly, its plutonium reactor can't be charged in UPS charging station.",
"weight": "453 g",
"volume": "2 L",
"price": 560000,
"to_hit": -1,
"bashing": 8,
"material": [ "aluminum", "plastic" ],
"symbol": ";",
"color": "light_green",
"ammo": "plutonium",
"max_charges": 2500,
"flags": [ "IS_UPS" ]
},
{
"id": "advanced_ecig",
"type": "TOOL",
"name": "advanced electronic cigarette",
"description": "An advanced version of the electronic cigarette. A less harmful way to get your nicotine fix than regular cigarettes, but still addictive. It needs batteries and nicotine liquid to function.",
"category": "drugs",
"weight": "200 g",
"volume": "250 ml",
"price": 5000,
"to_hit": -1,
"material": "steel",
"symbol": "!",
"color": "white",
"ammo": "battery",
"charges_per_use": 1,
"power_draw": 7500,
"use_action": "ECIG",
"magazines": [
[
"battery",
[
"light_battery_cell",
"light_plus_battery_cell",
"light_minus_battery_cell",
"light_atomic_battery_cell",
"light_disposable_cell",
"light_minus_disposable_cell",
"light_minus_atomic_battery_cell"
]
]
],
"magazine_well": 1
},
{
"id": "airhorn",
"type": "TOOL",
"name": "compressed air horn",
"description": "This is a small can of compressed air attached to a plastic horn. Pressing the button on top causes it to emit a loud honking sound.",
"weight": "467 g",
"volume": "250 ml",
"price": 500,
"to_hit": -4,
"bashing": 3,
"material": [ "plastic", "aluminum" ],
"symbol": ";",
"color": "red",
"initial_charges": 50,
"max_charges": 50,
"charges_per_use": 1,
"use_action": {
"type": "manualnoise",
"moves": 100,
"noise": 50,
"noise_message": "HOOOOONK!",
"noise_id": "misc",
"noise_variant": "airhorn",
"use_message": "You honk your airhorn.",
"no_charges_message": "You depress the button but no sound comes out.",
"//": "Use of %s not currently supported."
}
},
{
"id": "alarmclock",
"type": "TOOL",
"name": "alarm clock",
"description": "A wind-up alarm clock. Though the noise it makes is unpleasant to wake up to, it's always good to get an early start to your day. Can also be disassembled into some useful parts.",
"weight": "562 g",
"volume": "250 ml",
"price": 5000,
"price_postapoc": 100,
"to_hit": -3,
"bashing": 3,
"material": [ "aluminum", "glass" ],
"symbol": ",",
"color": "yellow",
"flags": [ "WATCH", "ALARMCLOCK" ]
},
{
"id": "anvil",
"type": "TOOL",
"name": "anvil",
"description": "This is an enormously heavy block of oddly shaped steel with a chisel-like projection set into the corner. It's used in most metalworking fabrication recipes.",
"weight": "54000 g",
"volume": "4 L",
"price": 100000,
"to_hit": -5,
"bashing": 40,
"material": "iron",
"symbol": ";",
"color": "dark_gray",
"qualities": [ [ "ANVIL", 3 ] ],
"flags": [ "DURABLE_MELEE" ]
},
{
"id": "water_mill",
"type": "TOOL",
"name": "water mill",
"description": "A small water-powered mill that can convert starchy products into flour. Can be placed via the construction menu.",
"weight": "120000 g",
"volume": "22500 ml",
"price": 100000,
"to_hit": -5,
"bashing": 40,
"material": "wood",
"symbol": "*",
"color": "red",
"flags": [ "DURABLE_MELEE" ]
},
{
"id": "wind_mill",
"type": "TOOL",
"name": "wind mill",
"description": "A small wind-powered mill that can convert starchy products into flour. Can be placed via the construction menu.",
"weight": "120000 g",
"volume": "22500 ml",
"price": 100000,
"to_hit": -5,
"bashing": 40,
"material": "steel",
"symbol": "T",
"color": "red",
"flags": [ "DURABLE_MELEE" ]
},
{
"id": "atomic_coffeepot",
"type": "GENERIC",
"category": "tools",
"name": "atomic coffee maker",
"description": "This is a Curie-G coffeemaker, by CuppaTech. It famously uses a radioactive generator to heat water for coffee. Normally the water is heated using energy stored in a capacitor, and makes ordinary coffee. However, as a special feature, water from the RTG containment area can be used, giving the coffee a very special kick. The Curie-G is illegal in most countries.",
"weight": "6102 g",
"volume": "1000 ml",
"price": 100000,
"to_hit": -2,
"bashing": 5,
"material": [ "plastic", "aluminum" ],
"qualities": [ [ "BOIL", 1 ] ],
"symbol": ",",
"color": "light_green",
"//": "It would be nice if this could have a use action to thaw frozen stuff. It's not hot enough to work as a hotplate.",
"flags": [ "LEAK_DAM", "RADIOACTIVE", "DURABLE_MELEE" ]
},
{
"id": "atomic_lamp",
"type": "GENERIC",
"category": "tools",
"name": "atomic lamp",
"description": "Powered by the magic of nuclear decay and low-energy LEDs, this very expensive lamp will emit a small amount of light for at least a decade. Before the Cataclysm, it was mostly an expensive way to show off your preparedness. Now, it's actually pretty cool. Use it to close the cover and hide the light.",
"weight": "1438 g",
"volume": "1 L",
"price": 175000,
"to_hit": -2,
"bashing": 8,
"material": [ "plastic", "aluminum" ],
"symbol": ",",
"color": "light_green",
"use_action": { "target": "atomic_lamp_off", "msg": "You close the lamp's cover.", "menu_text": "Close cover", "type": "transform" },
"flags": [ "LIGHT_15", "LEAK_DAM", "RADIOACTIVE", "DURABLE_MELEE", "ALLOWS_REMOTE_USE" ]
},
{
"id": "atomic_lamp_off",
"type": "GENERIC",
"category": "tools",
"name": "atomic lamp (covered)",
"name_plural": "atomic lamps (covered)",
"description": "Powered by the magic of nuclear decay and low-energy LEDs, this very expensive lamp will emit a small amount of light for at least a decade. Before the Cataclysm, it was mostly an expensive way to show off your preparedness. Now, it's actually pretty cool. The cover is closed. Use it to open the cover and show the light.",
"weight": "1438 g",
"volume": "1 L",
"price": 175000,
"to_hit": -2,
"bashing": 8,
"material": [ "plastic", "aluminum" ],
"symbol": ",",
"color": "light_green",
"use_action": { "target": "atomic_lamp", "msg": "You open the lamp's cover.", "menu_text": "Open cover", "type": "transform" },
"flags": [ "LEAK_DAM", "RADIOACTIVE", "DURABLE_MELEE", "ALLOWS_REMOTE_USE" ]
},
{
"id": "atomic_light",
"type": "GENERIC",
"category": "tools",
"name": "atomic reading light",
"description": "Powered by the magic of nuclear decay and low-energy LEDs, this extremely expensive little light will provide just enough light to read by for at least a decade. It is also available with a cute cartoon bear cover to turn it into a nightlight for a very wealthy child with a fear of the dark. Use it to close the cover and hide the light.",
"weight": "214 g",
"volume": "250 ml",
"price": 125000,
"to_hit": -2,
"bashing": 4,
"material": [ "plastic", "aluminum" ],
"symbol": ",",
"color": "light_green",
"use_action": {
"target": "atomic_light_off",
"msg": "You close the nightlight's cover.",
"menu_text": "Close cover",
"type": "transform"
},
"flags": [ "LIGHT_10", "LEAK_DAM", "RADIOACTIVE", "DURABLE_MELEE", "ALLOWS_REMOTE_USE" ]
},
{
"id": "atomic_light_off",
"type": "GENERIC",
"category": "tools",
"name": "atomic reading light (covered)",
"name_plural": "atomic reading lights (covered)",
"description": "Powered by the magic of nuclear decay and low-energy LEDs, this extremely expensive little light will provide just enough light to read by for at least a decade. It is also available with a cute cartoon bear cover to turn it into a nightlight for a very wealthy child with a fear of the dark. The cover is closed. Use it to open the cover and show the light.",
"weight": "214 g",
"volume": "250 ml",
"price": 125000,
"to_hit": -2,
"bashing": 4,
"material": [ "plastic", "aluminum" ],
"symbol": ",",
"color": "light_green",
"use_action": { "target": "atomic_light", "msg": "You open the nightlight's cover.", "menu_text": "Open cover", "type": "transform" },
"flags": [ "LEAK_DAM", "RADIOACTIVE", "DURABLE_MELEE", "ALLOWS_REMOTE_USE" ]
},
{
"type": "GENERIC",
"id": "mind_splicer",
"symbol": "o",
"color": "white",
"name": "mind splicer kit",
"description": "Surgical forceps, cables and a modified smartphone inside a small plastic pouch. Assembled to steal the mind of some poor man, these are tools of the creepy high-tech sandman.",
"material": "plastic",
"price": 12500,
"use_action": "MIND_SPLICER",
"volume": "1 L",
"weight": "600 g",
"flags": [ "TRADER_AVOID" ]
},
{
"id": "banjo",
"type": "TOOL",
"category": "tools",
"name": "banjo",
"name_plural": "banjos",
"description": "A standard factory-made banjo. Looks to be in working condition.",
"weight": "2000 g",
"volume": "3 L",
"price": 7500,
"to_hit": 2,
"bashing": 7,
"material": [ "wood", "iron" ],
"symbol": "|",
"color": "white",
"initial_charges": 1,
"max_charges": 1,
"use_action": {
"type": "musical_instrument",
"volume": 18,
"fun": -3,
"fun_bonus": 2,
"speed_penalty": 18,
"description_frequency": 20,
"player_descriptions": [
"You play a little tune on your banjo.",
"You play a bluegrass tune on your banjo.",
"You play a quick, Southern ditty on your banjo."
]
}
},
{
"id": "barometer",
"type": "TOOL",
"category": "tools",
"name": "barometer",
"name_plural": "barometers",
"description": "A plastic barometer that can read the atmospheric pressure.",
"weight": "1 g",
"volume": "250 ml",
"price": 100,
"to_hit": -3,
"material": "plastic",
"symbol": ";",
"color": "light_gray",
"use_action": "WEATHER_TOOL",
"flags": [ "BAROMETER" ]
},
{
"id": "beartrap",
"type": "TOOL",
"name": "bear trap",
"description": "This is a spring-loaded pair of steel jaws connected to a sensitive pressure plate. Use it to set it on the ground, creating a trap that will ensnare and damage anything that steps on it. If you are carrying a shovel, you will have the option of burying it.",
"weight": "11793 g",
"volume": "1500 ml",
"price": 6000,
"to_hit": -2,
"bashing": 9,
"cutting": 1,
"material": "steel",
"symbol": ";",
"color": "light_gray",
"use_action": {
"type": "place_trap",
"allow_underwater": true,
"bury_question": "Bury the beartrap?",
"bury": { "trap": "tr_beartrap_buried", "moves": 275, "practice": 7, "done_message": "You bury the beartrap." },
"trap": "tr_beartrap",
"moves": 200,
"practice": 4,
"done_message": "You set the beartrap."
}
},
{
"id": "blade_trap",
"type": "TOOL",
"name": "blade trap",
"description": "This is a machete attached laterally to a motor, with a tripwire controlling its throttle. When the tripwire is pulled, the blade is swung around with great force. The trap forms a 3x3 area of effect.",
"weight": "2381 g",
"volume": "4500 ml",
"price": 5000,
"to_hit": -4,
"bashing": 4,
"cutting": 14,
"material": "steel",
"symbol": ";",
"color": "light_gray",
"use_action": {
"type": "place_trap",
"outer_layer_trap": "tr_blade",
"trap": "tr_engine",
"moves": 400,
"practice": 12,
"done_message": "You set the blade trap %d squares away."
}
},
{
"id": "board_trap",
"type": "TOOL",
"name": "nailboard trap",
"description": "These are several pieces of wood nailed together, with some nails sticking straight up. If an unsuspecting victim steps on it, they'll get nails through the foot.",
"weight": "2041 g",
"volume": "1500 ml",
"price": 0,
"to_hit": -3,
"bashing": 12,
"cutting": 6,
"material": "wood",
"symbol": ";",
"color": "brown",
"use_action": {
"type": "place_trap",
"allow_underwater": true,
"trap": "tr_nailboard",
"moves": 150,
"practice": 2,
"done_message": "You set the board trap on the %s, nails facing up."
}
},
{
"id": "boltcutters",
"type": "TOOL",
"name": "pair of bolt cutters",
"name_plural": "pairs of bolt cutters",
"description": "This is a large pair of bolt cutters. You could use them to cut padlocks or heavy gauge wire.",
"weight": "1224 g",
"volume": "750 ml",
"price": 3000,
"to_hit": -1,
"bashing": 7,
"cutting": 4,
"material": [ "steel", "plastic" ],
"symbol": ";",
"color": "red",
"use_action": "BOLTCUTTERS",
"flags": [ "BELT_CLIP" ]
},
{
"id": "bone_flute",
"type": "TOOL",
"category": "tools",
"name": "bone flute",
"name_plural": "bone flutes",
"description": "A polished bone flute with five finger holes.",
"weight": "250 g",
"volume": "500 ml",
"price": 5000,
"bashing": 2,
"material": "bone",
"symbol": "-",
"color": "white",
"initial_charges": 1,
"max_charges": 1,
"use_action": {
"type": "musical_instrument",
"volume": 12,
"fun": -5,
"fun_bonus": 2,
"speed_penalty": 10,
"description_frequency": 20,
"player_descriptions": [
"You play a little tune on your flute.",
"You play a beautiful piece on your flute.",
"You play a piece on your bone flute that resembles the howling wind through Aurignacian caves.",
"Your bone flute wails for the fallen during the hunt."
]
}
},
{
"id": "boobytrap",
"type": "TOOL",
"name": "booby trap",
"description": "This is a crude explosive device triggered by a piece of string. Use it to setup and watch some poor bastard trigger it.",
"weight": "586 g",
"volume": "750 ml",
"price": 5000,
"to_hit": -4,
"material": [ "steel", "plastic" ],
"symbol": ";",
"color": "red",
"use_action": {
"type": "place_trap",
"trap": "tr_boobytrap",
"moves": 200,
"practice": 4,
"done_message": "You set the booby trap up and activate the grenade."
}
},
{
"id": "brick_kiln",
"type": "TOOL",
"name": "brick kiln",
"description": "This is a portable charcoal-fired kiln. It is designed for firing bricks, but you could use it to fire anything made of clay.",
"weight": "9600 g",
"volume": "9 L",
"price": 25000,
"to_hit": -3,
"bashing": 13,
"material": "steel",
"symbol": ";",
"color": "dark_gray",
"ammo": "charcoal",
"max_charges": 1000,
"flags": [ "ALLOWS_REMOTE_USE" ]
},
{
"id": "kiln",
"type": "TOOL",
"name": "electric kiln",
"description": "This is a portable electric kiln, powered by batteries. It is designed for firing bricks, but you could use it to fire anything made of clay. With a little mechanical know-how, you could probably even convert it to run directly off a vehicle's power system.",
"weight": "12000 g",
"volume": "7500 ml",
"price": 50000,
"to_hit": -3,
"bashing": 12,
"material": "steel",
"symbol": ";",
"color": "dark_gray",
"ammo": "battery",
"flags": [ "ALLOWS_REMOTE_USE" ],
"magazines": [
[ "battery", [ "heavy_battery_cell", "heavy_plus_battery_cell", "heavy_atomic_battery_cell", "heavy_disposable_cell" ] ]
],
"magazine_well": 4
},
{
"id": "bubblewrap",
"type": "TOOL",
"name": "bubble wrap",
"description": "This is a sheet of plastic covered with air-filled bubbles. Use it to set it on the ground, creating a trap that will warn you with noise when something steps on it.",
"weight": "6 g",
"volume": "250 ml",
"price": 50,
"material": "plastic",
"symbol": ";",
"color": "light_cyan",
"use_action": {
"type": "place_trap",
"allow_underwater": true,
"trap": "tr_bubblewrap",
"moves": 150,
"practice": 2,
"done_message": "You set the bubble wrap on the ground, ready to be popped."
}
},
{
"id": "c4",
"type": "TOOL",
"category": "weapons",
"name": "C-4 explosive",
"description": "This is military grade RDX composition explosive. A label reads: \"Highly explosive, use with extreme caution!\" It comes with a small timer.",
"weight": "1570 g",
"volume": "1 L",
"price": 9000,
"to_hit": -4,
"material": [ "plastic" ],
"symbol": ";",
"color": "light_gray",
"use_action": "C4"
},
{
"id": "c4armed",
"type": "TOOL",
"category": "weapons",
"name": "C-4 explosive (armed)",
"name_plural": "C-4 explosives (armed)",
"description": "This is military grade RDX composition explosive. A label reads: \"Highly explosive, use with extreme caution!\" It comes with a small timer, which is currently ticking down.",
"weight": "1570 g",
"volume": "1 L",
"price": 0,
"to_hit": -4,
"material": [ "plastic" ],
"symbol": ";",
"color": "light_gray",
"initial_charges": 9,
"max_charges": 9,
"turns_per_charge": 1,
"use_action": {
"type": "explosion",
"sound_volume": 0,
"sound_msg": "Tick.",
"no_deactivate_msg": "You've already set the %s's timer, you might want to get away from it.",
"explosion": { "power": 2000 }
},
"flags": [ "TRADER_AVOID" ]
},
{
"id": "caltrops",
"type": "TOOL",
"name": "loose caltrops",
"name_plural": "loose caltrops",
"description": "These are small metal objects covered with many sharp points. If an unsuspecting victim steps on one, they'll get a spine through the foot.",
"weight": "264 g",
"volume": "250 ml",
"price": 900,
"to_hit": -4,
"bashing": 1,
"cutting": 8,
"material": "iron",
"symbol": ";",
"color": "dark_gray",
"use_action": {
"type": "place_trap",
"trap": "tr_caltrops",
"moves": 150,
"practice": 2,
"done_message": "You scatter the caltrops on the %s."
}
},
{
"id": "caltrops_glass",
"type": "TOOL",
"name": "loose glass caltrops",
"name_plural": "loose glass caltrops",
"description": "These are glass shards glued together to expose their sharp edges. If an unsuspecting victim steps on one, they'll get cut.",
"weight": "264 g",
"volume": "500 ml",
"price": 100,
"to_hit": -4,
"cutting": 6,
"material": "glass",
"symbol": ";",
"color": "dark_gray",
"use_action": {
"type": "place_trap",
"trap": "tr_caltrops_glass",
"moves": 150,
"practice": 2,
"done_message": "You scatter the glass caltrops on the %s."
}
},
{
"id": "camera",
"type": "TOOL",
"name": "camera",
"description": "A point-and-shoot digital camera, with digital viewfinder, a backup 'iron-sight', and flash. You can look at your photos on the digital screen, or transfer them with a memory card. Takes conventional batteries.",
"weight": "907 g",
"volume": "250 ml",
"price": 20000,
"bashing": 1,
"material": [ "plastic", "steel" ],
"symbol": ";",
"color": "yellow",
"ammo": "battery",
"charges_per_use": 5,
"revert_to": "camera",
"use_action": "CAMERA",
"magazines": [
[
"battery",
[
"light_plus_battery_cell",
"light_minus_battery_cell",
"light_battery_cell",
"light_atomic_battery_cell",
"light_minus_atomic_battery_cell",
"light_minus_disposable_cell",
"light_disposable_cell"
]
]
],
"magazine_well": 1
},
{
"id": "camera_pro",
"type": "TOOL",
"name": "camera pro",
"description": "A 35mm digital SLR (single-lens reflex) camera, with optical and digital viewfinders, zoom lens with auto-focus and stabilizer, and flash. You can view your photos on it or transfer them with a memory card; it runs on conventional batteries. Before the cataclysm, you could have taken professional-grade photos using this.",
"weight": "2268 g",
"volume": "1250 ml",
"price": 800000,
"bashing": 1,
"material": [ "plastic", "steel" ],
"symbol": ";",
"color": "yellow",
"ammo": "battery",
"charges_per_use": 5,
"revert_to": "camera_pro",
"use_action": "CAMERA",
"flags": [ "CAMERA_PRO", "ALWAYS_TWOHAND" ],
"magazines": [
[
"battery",
[
"light_plus_battery_cell",
"light_minus_battery_cell",
"light_battery_cell",
"light_atomic_battery_cell",
"light_minus_atomic_battery_cell",
"light_minus_disposable_cell",
"light_disposable_cell"
]
]
],
"magazine_well": 1
},
{
"id": "can_sealer",
"type": "GENERIC",
"category": "tools",
"name": "can sealer",
"description": "A hand crank powered cast steel machine designed to automatically seal tin cans.",
"weight": "9800 g",
"volume": "5 L",
"price": 52500,
"to_hit": -2,
"bashing": 8,
"material": "steel",
"symbol": ";",
"color": "light_gray"
},
{
"id": "candle",
"type": "TOOL",
"name": "candle",
"description": "This is a thick candle. It doesn't provide very much light, but it can burn for quite a long time. You'll need a lighter or matches to light it.",
"weight": "100 g",
"volume": "250 ml",
"price": 100,
"to_hit": -2,
"material": "veggy",
"symbol": ",",
"color": "white",
"initial_charges": 100,
"max_charges": 100,
"charges_per_use": 1,
"revert_to": "can_food_unsealed",
"use_action": {
"target": "candle_lit",
"msg": "You light the candle.",
"active": true,
"need_fire": 1,
"menu_text": "Light",
"type": "transform"
}
},
{
"id": "candle_lit",
"type": "TOOL",
"name": "candle",
"name_plural": "candles",
"description": "This is a thick candle. It doesn't provide very much light, but it can burn for quite a long time. This candle is lit.",
"weight": "100 g",
"volume": "250 ml",
"price": 0,
"to_hit": -2,
"material": "veggy",
"symbol": ",",
"color": "white",
"initial_charges": 100,
"max_charges": 100,
"charges_per_use": 1,
"turns_per_charge": 1350,
"use_action": { "target": "candle", "msg": "The candle winks out.", "menu_text": "Extinguish", "type": "transform" },
"flags": [ "LIGHT_8", "WATER_EXTINGUISH", "TRADER_AVOID", "WIND_EXTINGUISH" ]
},
{
"id": "canister_goo",
"type": "TOOL",
"name": "goo canister",
"description": "There is a label on this canister: \"Warning: contains highly toxic and corrosive materials. Contents may be sentient. Open at your own risk.\" You think you can feel something moving inside it.",
"weight": "1596 g",
"volume": "500 ml",
"price": 35000,
"to_hit": 1,
"bashing": 4,
"material": "aluminum",
"symbol": ";",
"color": "dark_gray",
"initial_charges": 1,
"max_charges": 1,
"charges_per_use": 1,
"use_action": "CAN_GOO"
},
{
"id": "sieve_steel",
"type": "GENERIC",
"category": "tools",
"name": "sieve",
"description": "This is no mere strainer for noodles; it's a sieve used to separate particles of certain sizes. You could use this to do a really good job sifting flour, remove dust and soil from grain, or perhaps conduct gradiation tests for any civil engineers you might know. This one has been constructed from steel mesh.",
"weight": 318,
"volume": 2,
"price": 700,
"bashing": 2,
"material": [ "steel" ],
"symbol": ";",
"color": "dark_gray"
},
{
"id": "sieve_primitive",
"type": "GENERIC",
"category": "tools",
"name": "wicker sieve",
"description": "This is a primitive sieve constructed from woven strips of plant material. Early sieves like this were used to sift grain, though the openings on this one are too small for that.",
"weight": 50,
"volume": "500 ml",
"price": 300,
"bashing": 1,
"material": [ "paper" ],
"symbol": ";",
"color": "light_gray"
},
{
"id": "carding_paddles",
"type": "GENERIC",
"category": "tools",
"name": "carding paddles",
"name_plural": "pairs of carding paddles",
"description": "A pair of toothy wooden paddles used to clean fibers for use in textile production.",
"weight": "360 g",
"volume": "500 ml",
"price": 3000,
"to_hit": 1,
"bashing": 3,
"material": [ "wood" ],
"symbol": ";",
"color": "brown"
},
{
"id": "carver_off",
"type": "TOOL",
"name": "electric carver (off)",
"name_plural": "electric carvers (off)",
"description": "An electric meat carver powered by batteries. Two serrated blades that vibrate together to slice just about anything from turkey to ham... even zombies!",
"weight": "1106 g",
"volume": "1500 ml",
"price": 2000,
"bashing": 2,
"cutting": 8,
"material": [ "steel", "plastic" ],
"symbol": "/",
"color": "yellow",
"ammo": "battery",
"use_action": "CARVER_OFF",
"flags": [ "SHEATH_SWORD", "NONCONDUCTIVE" ],
"magazines": [
[
"battery",
[ "medium_battery_cell", "medium_plus_battery_cell", "medium_atomic_battery_cell", "medium_disposable_cell" ]
]
],
"magazine_well": 2
},
{
"id": "carver_on",
"copy-from": "carver_off",
"type": "TOOL",
"name": "electric carver (on)",
"name_plural": "electric carvers (on)",
"description": "This carver is on and the blades are buzzing. Use it to turn it off.",
"cutting": 30,
"power_draw": 150000,
"revert_to": "carver_off",
"qualities": [ [ "CUT", 1 ], [ "BUTCHER", 25 ] ],
"use_action": "CARVER_ON",
"flags": [ "MESSY", "TRADER_AVOID", "NONCONDUCTIVE" ],
"magazine_well": 2
},
{
"id": "catfood",
"type": "TOOL",
"name": "cat food",
"name_plural": "cat food",
"description": "This is food for cats. It smells strange, but cats seem to love it.",
"weight": "223 g",
"volume": "250 ml",
"price": 300,
"to_hit": -5,
"material": "flesh",
"symbol": ";",
"color": "brown",
"use_action": "CATFOOD"
},
{
"id": "cell_phone",
"type": "TOOL",
"name": "cellphone",
"name_plural": "cellphones",
"description": "This is a cellphone, an older cousin of a smartphone but still popular in certain circles due to its reliability, sturdiness and the ability to run on common batteries. Using this cellphone will turn it on and provide light, assuming it is sufficiently charged. It also has a clock app that includes an alarm.",
"weight": "226 g",
"volume": "100 ml",
"price": 9000,
"price_postapoc": 2000,
"material": [ "plastic", "aluminum" ],
"symbol": ";",
"color": "light_gray",
"ammo": "battery",
"charges_per_use": 1,
"use_action": {
"target": "cell_phone_flashlight",
"msg": "You light up the screen.",
"active": true,
"need_charges": 1,
"need_charges_msg": "The cellphone's batteries need more charge.",
"type": "transform"
},
"flags": [ "WATCH", "ALARMCLOCK" ],
"magazines": [
[
"battery",
[
"light_plus_battery_cell",
"light_minus_battery_cell",
"light_battery_cell",
"light_atomic_battery_cell",
"light_minus_atomic_battery_cell"
]
]
],