-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathelectronics.json
More file actions
1215 lines (1215 loc) · 40.6 KB
/
electronics.json
File metadata and controls
1215 lines (1215 loc) · 40.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "adv_UPS_off",
"type": "TOOL",
"category": "electronics",
"name": { "str": "advanced UPS", "str_pl": "advanced UPS's" },
"description": "This is an advanced version of the unified power supply, or UPS. Designed for military use to power advanced weapons, it uses plutonium fuel cells which provide better efficiency, but are not rechargeable. It can power many household electronics as well.",
"weight": "500 g",
"volume": "2 L",
"price": "5600 USD",
"price_postapoc": "30 USD",
"to_hit": -1,
"bashing": 8,
"material": [ "aluminum", "plastic" ],
"symbol": ";",
"color": "light_green",
"ammo": "plutonium",
"max_charges": 2500,
"ups_eff_mult": 2,
"ups_recharge_rate": 10,
"flags": [ "IS_UPS" ]
},
{
"id": "camera",
"type": "TOOL",
"category": "electronics",
"name": { "str": "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": "200 USD",
"price_postapoc": "50 cent",
"bashing": 1,
"material": [ "plastic", "steel" ],
"symbol": ";",
"color": "yellow",
"ammo": "battery",
"charges_per_use": 5,
"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": "250 ml"
},
{
"id": "camera_pro",
"type": "TOOL",
"category": "electronics",
"name": { "str": "professional camera" },
"description": "A 35 mm 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 a rechargeable power cell that can be switched to charge via Unified Power Supply. Before the Cataclysm, you could have taken professional-grade photos using this.",
"weight": "2268 g",
"volume": "1250 ml",
"price": "8 kUSD",
"price_postapoc": "1 USD",
"bashing": 1,
"material": [ "plastic", "steel" ],
"symbol": ";",
"color": "yellow",
"ammo": "battery",
"initial_charges": 160,
"max_charges": 200,
"charges_per_use": 5,
"use_action": [ "CAMERA", "TOGGLE_UPS_CHARGING" ],
"flags": [ "CAMERA_PRO", "ALWAYS_TWOHAND", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "cell_phone",
"type": "TOOL",
"category": "electronics",
"name": { "str": "cellphone" },
"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": "90 USD",
"price_postapoc": "1 USD",
"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,
"transform_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_minus_disposable_cell",
"light_battery_cell",
"light_disposable_cell",
"light_atomic_battery_cell",
"light_minus_atomic_battery_cell"
]
]
],
"magazine_well": "100 ml"
},
{
"id": "cell_phone_flashlight",
"copy-from": "cell_phone",
"type": "TOOL",
"name": { "str": "cellphone - Screenlight", "str_pl": "cellphones - Screenlight" },
"power_draw": 2500,
"revert_to": "cell_phone",
"use_action": { "target": "cell_phone", "msg": "You stop lighting up the screen.", "menu_text": "Turn off", "type": "transform" },
"flags": [ "WATCH", "LIGHT_8", "TRADER_AVOID" ]
},
{
"id": "control_laptop",
"type": "TOOL",
"copy-from": "laptop",
"name": { "str": "control laptop" },
"description": "A modified laptop, now capable of transmitting in the ultra-high frequencies utilized by robots. Activate it to command robots from afar, or to toggle charging via UPS.",
"price": "100 USD",
"price_postapoc": "80 USD",
"charges_per_use": 2,
"use_action": [
"EINKTABLETPC",
{
"target": "control_laptop_screen_lit",
"msg": "You light up the screen.",
"active": true,
"need_charges": 1,
"transform_charges": 1,
"need_charges_msg": "The control laptop's batteries need more charge.",
"type": "transform"
},
{
"type": "music_player",
"target": "control_laptop_music",
"msg": "You put in the earbuds and start listening to music.",
"moves": 200,
"need_charges": 1
},
"ROBOTCONTROL",
"RADIOCONTROL",
"PORTABLE_GAME",
"TOGGLE_UPS_CHARGING"
],
"ammo": "battery",
"initial_charges": 500,
"max_charges": 700,
"flags": [ "WATCH", "ALARMCLOCK", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "control_laptop_screen_lit",
"copy-from": "laptop",
"type": "TOOL",
"name": { "str": "control laptop - lit screen", "str_pl": "control laptops - lit screen" },
"power_draw": 5000,
"revert_to": "laptop",
"use_action": { "target": "control_laptop", "msg": "You stop lighting up the screen.", "menu_text": "Turn off", "type": "transform" },
"flags": [ "WATCH", "LIGHT_20", "TRADER_AVOID", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "control_laptop_music",
"copy-from": "laptop",
"type": "TOOL",
"name": { "str": "control laptop - music", "str_pl": "control laptops - music" },
"power_draw": 7000,
"revert_to": "control_laptop",
"use_action": "MP3_ON",
"flags": [ "WATCH", "TRADER_AVOID", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"type": "TOOL_ARMOR",
"id": "wrist_comp_budget",
"looks_like": "game_watch",
"//": "mainlined from tefnut expansion",
"name": { "str": "wrist computer" },
"category": "clothing",
"volume": "1000 ml",
"description": "A fancy wrist-mounted computer, with a menagerie of useful features, such as SD reading, a built-in thermometer, and even a radiation monitor!",
"weight": "112 g",
"to_hit": -1,
"color": "light_gray",
"covers": [ "hand_either" ],
"initial_charges": 500,
"max_charges": 600,
"charges_per_use": 1,
"price": "60 USD",
"price_postapoc": "1 USD",
"material": [ "plastic" ],
"use_action": [
{
"target": "wrist_comp_budget_flashlight",
"msg": "You activate the flashlight.",
"active": true,
"need_charges": 1,
"need_charges_msg": "The wrist computer's charge is too low.",
"type": "transform"
},
{
"//": "40 xp/hr. Tier 1, 0-3 skill, higher-tier EXP since requires power.",
"type": "train_skill",
"training_msg": "You update software and check logs, improving your understanding slightly.",
"training_skill": "computer",
"training_skill_min_level": 0,
"training_skill_xp": 8,
"training_skill_max_level": 3,
"training_skill_interval": 12,
"training_skill_xp_chance": 90
},
"WEATHER_TOOL",
"CAMERA",
{
"type": "music_player",
"target": "wrist_comp_budget_music",
"msg": "You put in the earbuds and start listening to music.",
"moves": 200,
"need_charges": 1
},
"PORTABLE_GAME",
"EINKTABLETPC",
"RADGLOVE"
],
"flags": [
"WATCH",
"ALARMCLOCK",
"WATER_FRIENDLY",
"BELTED",
"STURDY",
"ALLOWS_NATURAL_ATTACKS",
"OVERSIZE",
"USE_UPS",
"NO_UNLOAD",
"NO_RELOAD",
"THERMOMETER",
"FANCY"
],
"coverage": 15,
"symbol": "[",
"ammo": [ "battery" ]
},
{
"id": "wrist_comp_budget_music",
"copy-from": "wrist_comp_budget",
"type": "TOOL",
"name": { "str": "wrist computer - music", "str_pl": "wrist computers - music" },
"description": "This wrist computer is playing music, steadily raising your morale. You can't hear anything else while you're listening.",
"power_draw": 5000,
"revert_to": "wrist_comp_budget",
"use_action": [ "MP3_ON" ],
"flags": [
"WATCH",
"WATER_FRIENDLY",
"BELTED",
"STURDY",
"ALLOWS_NATURAL_ATTACKS",
"OVERSIZE",
"TRADER_AVOID",
"ALARMCLOCK",
"USE_UPS",
"NO_UNLOAD",
"NO_RELOAD",
"THERMOMETER",
"FANCY"
],
"magazine_well": "250 ml"
},
{
"id": "wrist_comp_budget_flashlight",
"copy-from": "wrist_comp_budget",
"type": "TOOL",
"name": { "str": "wrist computer - Flashlight", "str_pl": "wrist computers - Flashlight" },
"power_draw": 1500,
"revert_to": "wrist_comp_budget",
"use_action": [
{
"target": "wrist_comp_budget",
"msg": "You deactivate the flashlight.",
"menu_text": "Turn off flashlight",
"type": "transform"
}
],
"flags": [
"WATCH",
"WATER_FRIENDLY",
"BELTED",
"STURDY",
"ALLOWS_NATURAL_ATTACKS",
"OVERSIZE",
"LIGHT_20",
"CHARGEDIM",
"TRADER_AVOID",
"ALARMCLOCK",
"USE_UPS",
"NO_UNLOAD",
"NO_RELOAD",
"THERMOMETER",
"FANCY"
]
},
{
"type": "TOOL_ARMOR",
"id": "wrist_comp_control",
"name": { "str": "wrist control computer" },
"copy-from": "wrist_comp_budget",
"description": "A fancy wrist-mounted computer, with a menagerie of useful features, such as SD reading, a built-in thermometer, and even a radiation monitor!",
"weight": "112 g",
"price": "120 USD",
"price_postapoc": "100 USD",
"material": [ "plastic" ],
"use_action": [
{
"target": "wrist_comp_control_flashlight",
"msg": "You activate the flashlight.",
"active": true,
"need_charges": 1,
"need_charges_msg": "The wrist computer's charge is too low.",
"type": "transform"
},
"CAMERA",
"WEATHER_TOOL",
{
"type": "music_player",
"target": "wrist_comp_control_music",
"msg": "You put in the earbuds and start listening to music.",
"moves": 200,
"need_charges": 1
},
"PORTABLE_GAME",
"RADIOCONTROL",
"ROBOTCONTROL",
"EINKTABLETPC",
"RADGLOVE"
],
"flags": [
"WATCH",
"ALARMCLOCK",
"WATER_FRIENDLY",
"BELTED",
"STURDY",
"ALLOWS_NATURAL_ATTACKS",
"OVERSIZE",
"USE_UPS",
"NO_UNLOAD",
"NO_RELOAD",
"THERMOMETER",
"FANCY"
],
"coverage": 15,
"symbol": "[",
"ammo": [ "battery" ]
},
{
"id": "wrist_comp_control_music",
"copy-from": "wrist_comp_budget_music",
"type": "TOOL",
"name": { "str": "wrist control computer - music", "str_pl": "wrist control computers - music" },
"description": "This wrist computer is playing music, steadily raising your morale. You can't hear anything else while you're listening.",
"power_draw": 5000,
"revert_to": "wrist_comp_control",
"use_action": [ "MP3_ON" ],
"magazine_well": "250 ml"
},
{
"id": "wrist_comp_control_flashlight",
"copy-from": "wrist_comp_budget_flashlight",
"type": "TOOL",
"name": { "str": "wrist control computer - Flashlight", "str_pl": "wrist control computers - Flashlight" },
"power_draw": 1500,
"revert_to": "wrist_comp_control",
"use_action": [
{
"target": "wrist_comp_control",
"msg": "You deactivate the flashlight app.",
"menu_text": "Turn off flashlight",
"type": "transform"
}
]
},
{
"id": "directional_antenna",
"type": "GENERIC",
"category": "electronics",
"name": { "str": "directional antenna" },
"description": "This is an antenna designed to pick up signals better when pointed at the source. You could use this with a radio to receive faint signals.",
"weight": "500 g",
"volume": "500 ml",
"price": "8 USD",
"price_postapoc": "250 cent",
"to_hit": 1,
"material": "aluminum",
"symbol": ",",
"color": "light_gray",
"use_action": "DIRECTIONAL_ANTENNA"
},
{
"id": "e_handcuffs",
"type": "TOOL",
"category": "other",
"name": { "str_sp": "electronic handcuffs" },
"description": "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\nHowever, since the only police likely to respond are undead, you may have a long wait ahead, unless you get creative…",
"weight": "2000 g",
"volume": "250 ml",
"price": "0 cent",
"price_postapoc": "0 cent",
"to_hit": -8,
"cutting": 1,
"material": [ "plastic", "steel" ],
"symbol": ";",
"color": "white",
"max_charges": 3000,
"turns_per_charge": 1,
"use_action": "EHANDCUFFS",
"flags": [ "ALWAYS_TWOHAND", "UNARMED_WEAPON", "TRADER_AVOID" ]
},
{
"id": "eink_tablet_pc",
"type": "TOOL",
"category": "electronics",
"name": { "str": "e-ink tablet PC" },
"description": "A tablet PC using an efficient color e-ink display, with a recharging battery that can be switched to draw from a UPS. Before the Cataclysm, these were nifty gadgets; now, it's an almost priceless resource.",
"weight": "250 g",
"volume": "250 ml",
"price": "200 USD",
"price_postapoc": "1 USD",
"to_hit": -1,
"material": "plastic",
"symbol": ";",
"color": "blue",
"ammo": "battery",
"initial_charges": 160,
"max_charges": 200,
"charges_per_use": 1,
"use_action": [
"EINKTABLETPC",
{
"type": "music_player",
"target": "eink_tablet_pc_music",
"msg": "You put in the earbuds and start listening to music.",
"moves": 200,
"need_charges": 1
},
"TOGGLE_UPS_CHARGING"
],
"flags": [ "WATCH", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "eink_tablet_pc_music",
"copy-from": "eink_tablet_pc",
"type": "TOOL",
"name": { "str": "e-ink tablet PC - music", "str_pl": "e-ink tablet PCs - music" },
"description": "This e-ink tablet PC is playing music, steadily raising your morale. You can't hear anything else while you're listening.",
"power_draw": 2500,
"revert_to": "eink_tablet_pc",
"use_action": [ "MP3_ON" ]
},
{
"id": "electrohack",
"type": "TOOL",
"category": "electronics",
"name": { "str": "electrohack" },
"description": "This device has many ports attached, allowing it to connect to almost any control panel or other electronic machine (but not computers). With a little skill, it can be used to crack passwords and more. It requires 25 charges of battery power per use.",
"weight": "114 g",
"volume": "500 ml",
"price": "400 USD",
"price_postapoc": "5 USD",
"to_hit": 1,
"bashing": 5,
"material": [ "plastic", "aluminum" ],
"symbol": ",",
"color": "green",
"ammo": "battery",
"magazines": [
[
"battery",
[
"light_battery_cell",
"light_plus_battery_cell",
"light_minus_battery_cell",
"light_atomic_battery_cell",
"light_minus_atomic_battery_cell",
"light_minus_disposable_cell",
"light_disposable_cell"
]
]
],
"magazine_well": "250 ml"
},
{
"id": "geiger_off",
"type": "TOOL",
"category": "electronics",
"name": { "str": "geiger counter (off)", "str_pl": "geiger counters (off)" },
"description": "This is a tool for measuring radiation. Using it will prompt you to choose whether to scan yourself or the terrain, or to turn it on, which will provide continuous feedback on ambient radiation. It is currently off.",
"weight": "225 g",
"volume": "500 ml",
"price": "150 USD",
"price_postapoc": "10 USD",
"bashing": 2,
"material": [ "plastic", "aluminum" ],
"symbol": ";",
"color": "green",
"ammo": "battery",
"charges_per_use": 1,
"use_action": "GEIGER",
"magazines": [
[
"battery",
[
"light_battery_cell",
"light_plus_battery_cell",
"light_minus_battery_cell",
"light_atomic_battery_cell",
"light_minus_atomic_battery_cell",
"light_minus_disposable_cell",
"light_disposable_cell"
]
]
],
"magazine_well": "250 ml"
},
{
"id": "geiger_on",
"copy-from": "geiger_off",
"type": "TOOL",
"name": { "str": "geiger counter (on)", "str_pl": "geiger counters (on)" },
"description": "This is a tool for measuring radiation. It is in continuous scan mode, and will produce quiet clicking sounds in the presence of ambient radiation. Using it allows you to turn it off, or scan yourself or the ground. It is currently on.",
"power_draw": 200,
"revert_to": "geiger_off",
"use_action": "GEIGER",
"flags": [ "TRADER_AVOID" ],
"magazine_well": "250 ml"
},
{
"id": "sonar_device",
"type": "TOOL",
"category": "electronics",
"name": { "str": "handheld sonar" },
"description": "A rugged sonar unit with a compact transducer and display. Activate it to ping nearby underwater terrain and sketch what you find onto the overmap.",
"weight": "500 g",
"volume": "500 ml",
"price": "450 USD",
"price_postapoc": "15 USD",
"bashing": 2,
"material": [ "plastic", "steel" ],
"symbol": ";",
"color": "light_blue",
"ammo": "battery",
"charges_per_use": 100,
"use_action": "sonar_scan",
"magazines": [
[
"battery",
[
"light_battery_cell",
"light_plus_battery_cell",
"light_minus_battery_cell",
"light_atomic_battery_cell",
"light_minus_atomic_battery_cell",
"light_minus_disposable_cell",
"light_disposable_cell"
]
]
],
"magazine_well": "250 ml"
},
{
"id": "hand_crank_charger",
"type": "TOOL",
"category": "electronics",
"name": { "str": "hand-crank charger" },
"description": "This is a hand-powered battery charger. It has an adjustable receptacle designed to accept a wide variety of rechargeable battery cells.",
"weight": "2000 g",
"volume": "500 ml",
"price": "10 USD",
"price_postapoc": "250 cent",
"material": "plastic",
"symbol": ":",
"color": "light_gray",
"ammo": "battery",
"use_action": {
"type": "HAND_CRANK",
"charge_interval": "144 seconds",
"charge_amount": 2,
"fatigue_per_interval": 1,
"ammo_type": "battery",
"start_message": "You start cranking the %s to charge its %s.",
"already_charged_message": "You could use the %s to charge its %s, but it's already charged.",
"need_battery_message": "You need a rechargeable battery cell to charge.",
"underwater_message": "It's not waterproof enough to work underwater.",
"exhausted_message": "You're too exhausted to keep cranking.",
"fully_charged_message": "You've charged the battery completely."
},
"magazines": [
[
"battery",
[
"light_battery_cell",
"light_plus_battery_cell",
"light_minus_battery_cell",
"medium_battery_cell",
"medium_plus_battery_cell",
"heavy_battery_cell",
"heavy_plus_battery_cell"
]
]
]
},
{
"id": "laptop",
"type": "TOOL",
"category": "electronics",
"name": "laptop computer",
"description": "A laptop computer with an internal rechargeable battery, also capable of using UPS.",
"symbol": ",",
"color": "dark_gray",
"material": [ "plastic", "aluminum" ],
"weight": "2721 g",
"volume": "2500 ml",
"price": 75000,
"price_postapoc": 250,
"bashing": 6,
"ammo": "battery",
"initial_charges": 500,
"max_charges": 700,
"charges_per_use": 1,
"use_action": [
"EINKTABLETPC",
"PORTABLE_GAME",
{
"//": "40 xp/hr. Tier 1, 0-3 skill, higher-tier EXP since requires power.",
"type": "train_skill",
"training_msg": "You update software and check logs, improving your understanding slightly.",
"training_skill": "computer",
"training_skill_min_level": 0,
"training_skill_xp": 8,
"training_skill_max_level": 3,
"training_skill_interval": 12,
"training_skill_xp_chance": 90
},
{
"target": "laptop_screen_lit",
"msg": "You light up the screen.",
"active": true,
"need_charges": 1,
"transform_charges": 1,
"need_charges_msg": "The laptop's batteries need more charge.",
"type": "transform"
},
{
"type": "music_player",
"target": "laptop_music",
"msg": "You put in the earbuds and start listening to music.",
"moves": 200,
"need_charges": 1
},
"TOGGLE_UPS_CHARGING"
],
"flags": [ "WATCH", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "laptop_music",
"copy-from": "laptop",
"type": "TOOL",
"name": { "str": "laptop computer - music", "str_pl": "laptop computers - music" },
"power_draw": 7000,
"revert_to": "laptop",
"use_action": "MP3_ON",
"flags": [ "WATCH", "TRADER_AVOID", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "laptop_screen_lit",
"copy-from": "laptop",
"type": "TOOL",
"name": { "str": "laptop computer - lit screen", "str_pl": "laptop computers - lit screen" },
"power_draw": 5000,
"revert_to": "laptop",
"use_action": { "target": "laptop", "msg": "You stop lighting up the screen.", "menu_text": "Turn off", "type": "transform" },
"flags": [ "WATCH", "LIGHT_20", "TRADER_AVOID", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "mp3",
"type": "TOOL",
"category": "electronics",
"name": { "str": "mp3 player (off)", "str_pl": "mp3 players (off)" },
"description": "This battery-powered device is loaded up with someone's music collection. Fortunately, there's lots of songs you like, and listening to it will raise your morale slightly. Use it to turn it on, or toggle charging on the go from a Unified Power System.",
"weight": "140 g",
"volume": "50 ml",
"price": "30 USD",
"price_postapoc": "1 USD",
"material": [ "aluminum", "plastic" ],
"symbol": ";",
"color": "dark_gray",
"ammo": "battery",
"initial_charges": 160,
"max_charges": 200,
"flags": [ "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ],
"use_action": [
{
"type": "music_player",
"target": "mp3_on",
"msg": "You put in the earbuds and start listening to music.",
"moves": 200,
"need_charges": 5
},
"TOGGLE_UPS_CHARGING"
],
"charges_per_use": 1
},
{
"id": "mp3_on",
"copy-from": "mp3",
"type": "TOOL",
"name": { "str": "mp3 player (on)", "str_pl": "mp3 players (on)" },
"description": "This mp3 player is turned on and playing some great tunes, raising your morale steadily while on your person. It runs through batteries quickly; you can turn it off by using it. It also obscures your hearing.",
"power_draw": 3500,
"revert_to": "mp3",
"use_action": "MP3_ON",
"flags": [ "TRADER_AVOID", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "noise_emitter",
"type": "TOOL",
"category": "electronics",
"name": { "str": "noise emitter (off)", "str_pl": "noise emitters (off)" },
"description": "This device was constructed by 'enhancing' a speaker ripped off from some electronic device with some amplifier circuits. It has now no other use beside emitting loud crackling static noise, that could distract zombies.",
"weight": "340 g",
"volume": "1 L",
"price": "0 cent",
"price_postapoc": "50 cent",
"to_hit": -1,
"bashing": 6,
"material": [ "plastic", "aluminum" ],
"symbol": ";",
"color": "yellow",
"ammo": "battery",
"charges_per_use": 1,
"use_action": "NOISE_EMITTER_OFF",
"flags": [ "RADIO_MODABLE" ],
"magazines": [
[
"battery",
[
"light_battery_cell",
"light_plus_battery_cell",
"light_minus_battery_cell",
"light_atomic_battery_cell",
"light_minus_atomic_battery_cell",
"light_minus_disposable_cell",
"light_disposable_cell"
]
]
]
},
{
"id": "noise_emitter_on",
"copy-from": "noise_emitter",
"type": "TOOL",
"name": { "str": "noise emitter (on)", "str_pl": "noise emitters (on)" },
"description": "This device has been turned on and is emitting horrible crackles, pops and other static sounds. Quick, get away from it before it draws zombies to you!",
"power_draw": 10000,
"revert_to": "noise_emitter",
"use_action": "NOISE_EMITTER_ON",
"flags": [ "RADIO_MODABLE", "TRADER_AVOID" ]
},
{
"id": "portable_game",
"type": "TOOL",
"category": "electronics",
"name": { "str": "handheld game system" },
"description": "This is a portable games console in working condition, with an LED-screen allowing you to play in the dark. You can use it to play it for a little while, running down the integrated battery. Can also be set to draw power from a UPS.",
"weight": "200 g",
"volume": "250 ml",
"price": "120 USD",
"price_postapoc": "1 USD",
"material": [ "plastic" ],
"symbol": ";",
"color": "light_gray",
"ammo": "battery",
"initial_charges": 160,
"max_charges": 200,
"flags": [ "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ],
"charges_per_use": 1,
"use_action": [ "PORTABLE_GAME", "TOGGLE_UPS_CHARGING" ]
},
{
"id": "smart_phone",
"type": "TOOL",
"category": "electronics",
"name": { "str": "smartphone" },
"description": "A popular, fancy smartphone. Capable of making photos due to integrated camera and illuminating an area as per flashlight app, assuming it has enough charge. The smartphone also has a clock app that includes an alarm. Runs on a small, rechargeable power cell compatible with Unified Power Supply if set to charge from one.",
"weight": "230 g",
"volume": "100 ml",
"price": 20000,
"price_postapoc": 200,
"material": [ "plastic", "aluminum" ],
"looks_like": "cell_phone",
"symbol": ";",
"color": "light_gray",
"ammo": "battery",
"initial_charges": 160,
"max_charges": 200,
"charges_per_use": 1,
"use_action": [
{
"target": "smart_phone_flashlight",
"msg": "You activate the flashlight app.",
"active": true,
"need_charges": 5,
"transform_charges": 1,
"need_charges_msg": "The smartphone's charge is too low.",
"type": "transform",
"menu_text": "Activate Flashlight"
},
{
"//": "40 xp/hr. Tier 1, 0-3 skill, higher-tier EXP since requires power.",
"type": "train_skill",
"training_msg": "You fiddle with your phone’s settings and apps, picking up some basic computer knowledge.",
"training_skill": "computer",
"training_skill_min_level": 0,
"training_skill_xp": 8,
"training_skill_max_level": 3,
"training_skill_xp_chance": 90,
"training_skill_interval": 12
},
"CAMERA",
{
"type": "music_player",
"target": "smart_phone_music",
"msg": "You put in the earbuds and start listening to music.",
"moves": 200,
"need_charges": 5
},
"PORTABLE_GAME",
"TOGGLE_UPS_CHARGING"
],
"flags": [ "WATCH", "ALARMCLOCK", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "smart_phone_music",
"copy-from": "smart_phone",
"type": "TOOL",
"name": { "str": "smartphone - music", "str_pl": "smartphones - music" },
"description": "This phone is playing music, steadily raising your morale. You can't hear anything else while you're listening.",
"power_draw": 7000,
"revert_to": "smart_phone",
"use_action": "MP3_ON",
"flags": [ "WATCH", "TRADER_AVOID", "ALARMCLOCK", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ],
"magazine_well": "250 ml"
},
{
"id": "smart_phone_flashlight",
"copy-from": "smart_phone",
"type": "TOOL",
"name": { "str": "smartphone - Flashlight", "str_pl": "smartphones - Flashlight" },
"power_draw": 5000,
"revert_to": "smart_phone",
"use_action": {
"target": "smart_phone",
"msg": "You deactivate the flashlight app.",
"menu_text": "Turn off flashlight",
"type": "transform"
},
"flags": [ "WATCH", "LIGHT_20", "TRADER_AVOID", "ALARMCLOCK", "RECHARGE", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "afs_atomic_smartphone",
"type": "TOOL",
"name": { "str": "atomic smartphone" },
"description": "Never charge your phone again with the Rivtech atomic smartphone. Rated for 10 million years of use, this cutting-edge gadget had been on public markets for less than a week when the Cataclysm hit, and their eye-watering price made them a rarity. It includes an alarm clock, a high-resolution camera, and a bright flashlight.",
"weight": "300 g",
"volume": "50 ml",
"price": 200000,
"price_postapoc": 2500,
"material": [ "plastic", "aluminum" ],
"looks_like": "cell_phone",
"symbol": ";",
"color": "light_green",
"use_action": [
{
"target": "afs_atomic_smartphone_flashlight",
"msg": "You activate the flashlight app.",
"active": true,
"type": "transform",
"menu_text": "Activate Flashlight"
},
{
"//": "40 xp/hr. Tier 1, 0-3 skill, higher-tier EXP since requires power.",
"type": "train_skill",
"training_msg": "You fiddle with your phone’s settings and apps, picking up some basic computer knowledge.",
"training_skill": "computer",
"training_skill_min_level": 0,
"training_skill_xp": 8,
"training_skill_max_level": 3,
"training_skill_fatigue": 0,
"training_skill_interval": 12,
"training_skill_xp_chance": 90
},
"CAMERA",
"PORTABLE_GAME",
{
"type": "music_player",
"target": "afs_atomic_smartphone_music",
"msg": "You put in the earbuds and start listening to music.",
"moves": 200
}
],
"flags": [ "WATCH", "ALARMCLOCK", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "afs_atomic_smartphone_music",
"copy-from": "afs_atomic_smartphone",
"type": "TOOL",
"name": { "str": "atomic smartphone - music", "str_pl": "atomic smartphones - music" },
"description": "This phone is playing music, steadily raising your morale. You can't hear anything else while you're listening.",
"revert_to": "afs_atomic_smartphone",
"use_action": [ "MP3_ON" ],
"flags": [ "WATCH", "TRADER_AVOID", "ALARMCLOCK", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "afs_atomic_smartphone_flashlight",
"copy-from": "afs_atomic_smartphone",
"type": "TOOL",
"name": { "str": "atomic smartphone - Flashlight", "str_pl": "atomic smartphones - Flashlight" },
"revert_to": "afs_atomic_smartphone",
"use_action": {
"target": "afs_atomic_smartphone",
"msg": "You deactivate the flashlight app.",
"menu_text": "Turn off flashlight",
"type": "transform"
},
"flags": [ "WATCH", "LIGHT_25", "TRADER_AVOID", "ALARMCLOCK", "NO_UNLOAD", "NO_RELOAD" ]
},
{
"id": "UPS_off",
"type": "TOOL",
"category": "electronics",
"name": { "str": "UPS", "str_pl": "UPS's" },
"description": "This is a unified power supply, or UPS. It is a civilian evolution of a military project. Designed to power advanced weapons and armor, the civilian version serves as a portable power bank and inverter for many household electronics.",
"weight": "680 g",
"volume": "2500 ml",
"price": "2800 USD",
"price_postapoc": "15 USD",
"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": "2000 ml",
"flags": [ "IS_UPS" ]
},
{
"id": "vibrator",
"type": "TOOL",
"category": "electronics",
"name": { "str": "vibrator" },
"description": "This battery-devouring device is just the thing to knead the tension out and help you relax. Use it to take a break and unwind.",
"weight": "500 g",
"volume": "500 ml",
"price": "55 USD",
"price_postapoc": "1 USD",
"material": [ "aluminum", "plastic" ],
"symbol": ";",
"color": "dark_gray",
"ammo": "battery",
"use_action": { "type": "sex_toy", "moves": 60000 },
"magazines": [
[
"battery",
[
"light_battery_cell",
"light_plus_battery_cell",
"light_minus_battery_cell",
"light_atomic_battery_cell",
"light_minus_atomic_battery_cell",
"light_minus_disposable_cell",
"light_disposable_cell"
]
]
],
"magazine_well": "250 ml"
},
{