-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
furniture-storage.json
1721 lines (1721 loc) · 58.4 KB
/
furniture-storage.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
[
{
"type": "furniture",
"id": "f_bookcase",
"name": "bookcase",
"symbol": "{",
"description": "A simple wooden shelf for storing dozens of books. While designed for books, it does a decent job of storing anything else that'll fit.",
"color": "brown",
"move_cost_mod": -1,
"coverage": 80,
"required_str": 9,
"flags": [ "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "BLOCKSDOOR" ],
"rotates_to": "INDOORFLOOR",
"deconstruct": {
"items": [
{ "item": "2x4", "count": 12 },
{ "item": "wood_panel", "count": [ 0, 1 ] },
{ "item": "nail", "charges": [ 12, 16 ] }
]
},
"max_volume": "2000 L",
"bash": {
"str_min": 6,
"str_max": 40,
"sound": "smash!",
"sound_fail": "whump.",
"items": [ { "item": "2x4", "count": [ 2, 6 ] }, { "item": "nail", "charges": [ 4, 12 ] }, { "item": "splinter", "count": 1 } ]
},
"shoot": { "reduce_damage": [ 5, 20 ], "reduce_damage_laser": [ 5, 20 ], "destroy_damage": [ 15, 45 ] }
},
{
"type": "furniture",
"id": "f_entertainment_center",
"name": "entertainment center",
"symbol": "{",
"description": "While not quite as cool by itself as the name might imply, this large wooden cabinet can store a variety of things, like a TV and media systems, with shelving space and cupboards for anything that'll fit.",
"color": "brown",
"looks_like": "f_bookcase",
"move_cost_mod": -1,
"coverage": 80,
"required_str": 10,
"flags": [ "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "BLOCKSDOOR", "SMALL_HIDE" ],
"rotates_to": "INDOORFLOOR",
"deconstruct": {
"items": [ { "item": "2x4", "count": 14 }, { "item": "wood_panel", "count": 2 }, { "item": "nail", "charges": [ 12, 20 ] } ]
},
"max_volume": "2000 L",
"bash": {
"str_min": 6,
"str_max": 40,
"sound": "smash!",
"sound_fail": "whump.",
"items": [
{ "item": "2x4", "count": [ 2, 12 ] },
{ "item": "nail", "charges": [ 4, 20 ] },
{ "item": "splinter", "count": [ 6, 10 ] },
{ "item": "wood_panel", "count": [ 0, 1 ] }
]
}
},
{
"type": "furniture",
"id": "f_coffin_c",
"name": "coffin",
"looks_like": "f_coffin_o",
"description": "A humble wooden casket for the respectful burial of the dead. While a standard practice before this all happened, it is now a rare honor for one to be given a proper final resting place. An honor that countless many will likely never receive.",
"symbol": "0",
"bgcolor": "brown",
"move_cost_mod": -1,
"coverage": 40,
"required_str": 14,
"flags": [
"TRANSPARENT",
"CONTAINER",
"SEALED",
"ALLOW_FIELD_EFFECT",
"FLAMMABLE",
"PLACE_ITEM",
"ORGANIC",
"MOUNTABLE",
"SHORT",
"FLAT_SURF"
],
"deconstruct": {
"items": [
{ "item": "2x4", "count": 12 },
{ "item": "nail", "charges": [ 12, 24 ] },
{ "item": "wood_panel", "count": [ 0, 1 ] },
{ "item": "sheet_cotton", "count": 3 },
{ "item": "cotton_patchwork", "count": 6 }
]
},
"max_volume": "875 L",
"prying": {
"result": "f_coffin_o",
"message": "You wedge open the coffin.",
"prying_data": { "difficulty": 5, "prying_level": 2, "noisy": true, "failure": "You pry, but the coffin remains closed." }
},
"bash": {
"str_min": 12,
"str_max": 40,
"sound": "smash!",
"sound_fail": "wham!",
"items": [
{ "item": "2x4", "count": [ 1, 5 ] },
{ "item": "splinter", "count": [ 2, 6 ] },
{ "item": "nail", "charges": [ 2, 10 ] },
{ "item": "sheet_cotton", "count": 1 },
{ "item": "cotton_patchwork", "count": [ 8, 12 ] }
]
}
},
{
"type": "furniture",
"id": "f_coffin_o",
"name": "open coffin",
"description": "A humble wooden casket for the respectful burial of the dead. While a standard practice before this all happened, it is now a rare honor for one to be given a proper final resting place. This one is open and unoccupied, and gazing inside fills you with a sense of melancholic weariness.",
"symbol": "O",
"bgcolor": "brown",
"move_cost_mod": -1,
"coverage": 35,
"required_str": 12,
"flags": [ "TRANSPARENT", "CONTAINER", "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "MOUNTABLE", "SHORT" ],
"deconstruct": {
"items": [
{ "item": "2x4", "count": 12 },
{ "item": "nail", "charges": [ 12, 24 ] },
{ "item": "wood_panel", "count": [ 0, 1 ] },
{ "item": "sheet_cotton", "count": 3 },
{ "item": "cotton_patchwork", "count": 6 }
]
},
"max_volume": "875 L",
"bash": {
"str_min": 12,
"str_max": 40,
"sound": "smash!",
"sound_fail": "wham!",
"items": [
{ "item": "2x4", "count": [ 1, 5 ] },
{ "item": "splinter", "count": [ 2, 6 ] },
{ "item": "nail", "charges": [ 2, 10 ] },
{ "item": "sheet_cotton", "count": 1 },
{ "item": "cotton_patchwork", "count": [ 8, 12 ] }
]
}
},
{
"type": "furniture",
"id": "f_crate_c",
"name": "crate",
"description": "A sealed wooden storage container. Lacking any labels, it could hold just about anything inside. If you don't have a proper tool to pry it open, smashing it is an option, albeit one that risks destroying the contents.",
"symbol": "X",
"bgcolor": "brown",
"move_cost_mod": -1,
"coverage": 60,
"required_str": 12,
"flags": [
"TRANSPARENT",
"CONTAINER",
"SEALED",
"ALLOW_FIELD_EFFECT",
"FLAMMABLE",
"PLACE_ITEM",
"ORGANIC",
"MOUNTABLE",
"SHORT"
],
"examine_action": "locked_object",
"deconstruct": {
"items": [ { "item": "2x4", "count": 4 }, { "item": "wood_panel", "count": [ 1, 2 ] }, { "item": "nail", "charges": [ 6, 10 ] } ]
},
"prying": {
"result": "f_crate_o",
"message": "You pop open the crate.",
"prying_data": { "difficulty": 6, "prying_level": 1, "noisy": true, "failure": "You pry, but can't pop open the crate." }
},
"bash": {
"str_min": 12,
"str_max": 40,
"sound": "smash!",
"sound_fail": "wham!",
"items": [ { "item": "2x4", "count": [ 1, 5 ] }, { "item": "nail", "charges": [ 2, 10 ] } ]
}
},
{
"type": "furniture",
"id": "f_crate_o",
"name": "open crate",
"description": "An open wooden storage box, capable of holding any number of things. The lid has been pried off and is leaned adjacent to it, and with a fresh set of nails, could be sealed back shut.",
"symbol": "O",
"bgcolor": "brown",
"move_cost_mod": -1,
"coverage": 60,
"required_str": 10,
"flags": [ "TRANSPARENT", "CONTAINER", "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "MOUNTABLE", "SHORT", "SMALL_HIDE" ],
"deconstruct": {
"items": [ { "item": "2x4", "count": 4 }, { "item": "wood_panel", "count": [ 0, 1 ] }, { "item": "nail", "charges": [ 6, 10 ] } ]
},
"bash": {
"str_min": 12,
"str_max": 40,
"sound": "smash!",
"sound_fail": "wham!",
"items": [ { "item": "2x4", "count": [ 1, 5 ] }, { "item": "nail", "charges": [ 2, 10 ] } ]
}
},
{
"type": "furniture",
"id": "f_cardboard_box",
"name": "large cardboard box",
"symbol": "X",
"description": "A large box made of brown corrugated paper. Could contain a number of things, and you could even hide inside. Considering it only has two small flaps for carrying, it's very hard to see out of, and won't do anything to protect you if you're found.",
"color": "brown",
"move_cost_mod": 7,
"coverage": 90,
"comfort": 1,
"floor_bedding_warmth": 200,
"required_str": 3,
"deconstruct": { "items": [ { "item": "box_large", "count": 1 } ] },
"max_volume": "324 L",
"deployed_item": "box_large",
"examine_action": "deployed_furniture",
"flags": [ "TRANSPARENT", "FLAMMABLE_ASH", "PLACE_ITEM", "ORGANIC", "EASY_DECONSTRUCT", "HIDE_PLACE", "NO_SIGHT", "CONTAINER" ],
"bash": {
"str_min": 2,
"str_max": 15,
"sound": "crumple!",
"sound_fail": "thud.",
"items": [ { "item": "cardboard", "count": [ 150, 180 ] } ]
}
},
{
"type": "furniture",
"id": "f_cardboard_box_large_reinforced",
"name": "reinforced large cardboard box",
"symbol": "X",
"description": "A large box made of brown corrugated paper that was doubled up for extra strength. Could contain a number of things, and you could even hide inside. Considering it only has two small flaps for carrying, it's very hard to see out of, and won't do anything to protect you if you're found.",
"color": "brown",
"looks_like": "f_cardboard_box",
"move_cost_mod": 7,
"coverage": 90,
"comfort": 1,
"floor_bedding_warmth": 200,
"required_str": 3,
"deconstruct": { "items": [ { "item": "box_large_reinforced", "count": 1 } ] },
"max_volume": "324 L",
"deployed_item": "box_large_reinforced",
"examine_action": "deployed_furniture",
"flags": [ "TRANSPARENT", "FLAMMABLE_ASH", "PLACE_ITEM", "ORGANIC", "EASY_DECONSTRUCT", "HIDE_PLACE", "NO_SIGHT", "CONTAINER" ],
"bash": {
"str_min": 3,
"str_max": 16,
"sound": "crumple!",
"sound_fail": "thud.",
"items": [ { "item": "cardboard", "count": [ 300, 360 ] } ]
}
},
{
"type": "furniture",
"id": "f_dresser",
"name": "dresser",
"symbol": "{",
"description": "A simple wooden cabinet with a column of short drawers. While intended for storing clothes, there's nothing stopping you from storing whatever fits.",
"color": "brown",
"move_cost_mod": -1,
"coverage": 70,
"required_str": 8,
"flags": [ "TRANSPARENT", "CONTAINER", "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "BLOCKSDOOR", "MOUNTABLE" ],
"deconstruct": {
"items": [ { "item": "2x4", "count": 6 }, { "item": "wood_panel", "count": [ 0, 1 ] }, { "item": "nail", "charges": [ 6, 8 ] } ]
},
"max_volume": "2000 L",
"bash": {
"str_min": 12,
"str_max": 40,
"sound": "smash!",
"sound_fail": "whump.",
"items": [ { "item": "2x4", "count": [ 2, 6 ] }, { "item": "nail", "charges": [ 4, 8 ] }, { "item": "splinter", "count": 1 } ]
}
},
{
"type": "furniture",
"id": "f_glass_cabinet",
"name": "glass front cabinet",
"symbol": "[",
"looks_like": "f_display_rack",
"description": "A tall metal cabinet with a sheet of glass across the front for viewing the contents. Often used for displaying rare, visually pleasing, or otherwise valuable goods, it's odd that it doesn't have a lock.",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 30,
"required_str": 8,
"flags": [ "PLACE_ITEM", "TRANSPARENT", "BLOCKSDOOR" ],
"deconstruct": {
"items": [
{ "item": "2x4", "count": [ 2, 6 ] },
{ "item": "nail", "charges": [ 4, 16 ] },
{ "item": "glass_sheet", "count": [ 1, 2 ] },
{ "item": "sheet_metal_small", "count": [ 0, 4 ] },
{ "item": "pipe", "count": [ 0, 4 ] }
]
},
"max_volume": "400 L",
"bash": {
"str_min": 12,
"str_max": 40,
"sound": "glass breaking!",
"sound_fail": "crunch!",
"items": [
{ "item": "2x4", "count": [ 1, 4 ] },
{ "item": "splinter", "count": [ 1, 4 ] },
{ "item": "nail", "charges": [ 4, 8 ] },
{ "item": "glass_shard", "count": [ 16, 100 ] },
{ "item": "scrap", "count": [ 0, 2 ] }
]
}
},
{
"type": "furniture",
"id": "f_gunsafe_o",
"name": "open gun safe",
"description": "A large, heavy container with thick metal walls, designed to securely store firearms, weapon mods, and ammunition. This one is wide open.",
"symbol": "X",
"color": "light_gray",
"looks_like": "f_gunsafe_ml",
"move_cost_mod": -1,
"coverage": 30,
"required_str": 14,
"max_volume": "250 L",
"close": "f_gunsafe_c",
"flags": [ "TRANSPARENT", "CONTAINER", "PLACE_ITEM", "MOUNTABLE" ],
"bash": {
"str_min": 40,
"str_max": 200,
"sound": "screeching metal!",
"sound_fail": "whump!",
"items": [
{ "item": "steel_chunk", "count": [ 1, 5 ] },
{ "item": "scrap", "count": [ 1, 5 ] },
{ "item": "rock", "count": [ 1, 2 ] }
]
}
},
{
"type": "furniture",
"id": "f_gunsafe_c",
"name": "closed gun safe",
"description": "A large, heavy container with thick metal walls and a rotary combination lock, designed to securely store firearms, weapon mods, and ammunition. This one is closed, but not locked.",
"symbol": "X",
"color": "light_gray",
"looks_like": "f_gunsafe_ml",
"move_cost_mod": -1,
"coverage": 30,
"required_str": 14,
"max_volume": "250 L",
"open": "f_gunsafe_o",
"flags": [ "TRANSPARENT", "CONTAINER", "SEALED", "PLACE_ITEM", "MOUNTABLE" ],
"bash": {
"str_min": 40,
"str_max": 200,
"sound": "screeching metal!",
"sound_fail": "whump!",
"items": [
{ "item": "steel_chunk", "count": [ 1, 5 ] },
{ "item": "scrap", "count": [ 1, 5 ] },
{ "item": "rock", "count": [ 1, 2 ] }
]
}
},
{
"type": "furniture",
"id": "f_gunsafe_ml",
"name": "locked gun safe",
"description": "A large, heavy container with thick metal walls and a rotary combination lock, designed to securely store firearms, weapon mods, and ammunition. If you had something to pick its lock with, you could probably open it.",
"symbol": "X",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 30,
"required_str": 14,
"max_volume": "250 L",
"flags": [ "TRANSPARENT", "CONTAINER", "SEALED", "PLACE_ITEM", "MOUNTABLE", "PICKABLE" ],
"lockpick_result": "f_gunsafe_o",
"lockpick_message": "With a satisfying click, the lock on the gun safe door opens.",
"examine_action": "locked_object_pickable",
"oxytorch": { "result": "f_safe_o", "duration": "14 seconds" },
"bash": {
"str_min": 40,
"str_max": 200,
"sound": "screeching metal!",
"sound_fail": "whump!",
"items": [
{ "item": "steel_chunk", "count": [ 1, 5 ] },
{ "item": "scrap", "count": [ 1, 5 ] },
{ "item": "rock", "count": [ 1, 2 ] }
]
}
},
{
"type": "furniture",
"id": "f_gunsafe_mj",
"name": "jammed gun safe",
"looks_like": "f_gunsafe_ml",
"description": "A large, heavy container with thick metal walls and a rotary combination lock, designed to securely store firearms, weapon mods, and ammunition. Unfortunately, the lock is completely broken, and short of some pretty serious machinery, you have no possible way of opening it.",
"symbol": "X",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 30,
"required_str": 14,
"max_volume": "250 L",
"flags": [ "TRANSPARENT", "CONTAINER", "SEALED", "PLACE_ITEM", "MOUNTABLE" ],
"oxytorch": { "result": "f_safe_o", "duration": "14 seconds" },
"bash": {
"str_min": 40,
"str_max": 200,
"sound": "screeching metal!",
"sound_fail": "whump!",
"items": [
{ "item": "steel_chunk", "count": [ 1, 5 ] },
{ "item": "scrap", "count": [ 1, 5 ] },
{ "item": "rock", "count": [ 1, 2 ] }
]
}
},
{
"type": "furniture",
"id": "f_gun_safe_el",
"name": "electronic gun safe",
"looks_like": "f_gunsafe_ml",
"description": "A large, heavy container with thick metal walls and an electronic locking system, designed to securely store firearms, weapon mods, and ammunition. If you had some way of hacking into it, you could probably crack it open.",
"symbol": "X",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 30,
"required_str": 14,
"max_volume": "250 L",
"flags": [ "TRANSPARENT", "CONTAINER", "SEALED", "PLACE_ITEM", "MOUNTABLE" ],
"oxytorch": { "result": "f_safe_o", "duration": "14 seconds" },
"examine_action": "gunsafe_el",
"bash": {
"str_min": 40,
"str_max": 200,
"sound": "screeching metal!",
"sound_fail": "whump!",
"items": [
{ "item": "steel_chunk", "count": [ 1, 5 ] },
{ "item": "scrap", "count": [ 1, 5 ] },
{ "item": "rock", "count": [ 1, 2 ] }
]
}
},
{
"type": "furniture",
"id": "f_locker",
"name": "locker",
"symbol": "{",
"description": "A tall sheet metal cabinet, useful for storing just about anything that'll fit.",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 90,
"required_str": 9,
"flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR" ],
"rotates_to": "INDOORFLOOR",
"deconstruct": {
"items": [
{ "item": "sheet_metal", "count": [ 1, 2 ] },
{ "item": "sheet_metal_small", "count": [ 0, 4 ] },
{ "item": "lock", "count": [ 0, 1 ] },
{ "item": "pipe", "count": [ 4, 8 ] }
]
},
"max_volume": "500 L",
"bash": {
"str_min": 12,
"str_max": 40,
"sound": "metal screeching!",
"sound_fail": "clang!",
"items": [
{ "item": "scrap", "count": [ 4, 10 ] },
{ "item": "sheet_metal_small", "count": [ 6, 10 ] },
{ "item": "pipe", "count": [ 0, 1 ] }
]
}
},
{
"type": "furniture",
"id": "f_mailbox",
"name": "mailbox",
"symbol": "P",
"description": "A small metal box on top of a wooden post, designed to receive mail deliveries. Although considering the circumstances, it will likely never see proper use again.",
"color": "light_gray",
"move_cost_mod": 1,
"required_str": -1,
"flags": [ "TRANSPARENT", "FLAMMABLE_HARD", "CONTAINER", "PLACE_ITEM", "MOUNTABLE" ],
"deconstruct": {
"items": [ { "item": "2x4", "count": 2 }, { "item": "nail", "charges": [ 2, 5 ] }, { "item": "sheet_metal", "count": 1 } ]
},
"max_volume": "10 L",
"bash": {
"str_min": 12,
"str_max": 50,
"sound": "smash!",
"sound_fail": "whump.",
"items": [
{ "item": "2x4", "count": 1 },
{ "item": "nail", "charges": [ 1, 5 ] },
{ "item": "splinter", "count": 2 },
{ "item": "sheet_metal_small", "count": [ 6, 10 ] },
{ "item": "scrap", "count": [ 4, 10 ] }
]
}
},
{
"type": "furniture",
"id": "f_clothing_rail",
"name": "clothing rail",
"looks_like": "f_rack",
"description": "A metal frame on a set of wheels used for hanging large amounts of clothes. Usually used in theater or retail environments, it's easy to use and quick to access.",
"symbol": "{",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 10,
"required_str": 8,
"flags": [ "TRANSPARENT", "FLAMMABLE_HARD", "PLACE_ITEM", "BLOCKSDOOR" ],
"deconstruct": {
"items": [
{ "item": "pipe", "count": [ 4, 6 ] },
{ "item": "sheet_metal_small", "count": [ 0, 4 ] },
{ "item": "wheel_caster", "count": 1 }
]
},
"max_volume": "1750 L",
"bash": {
"str_min": 6,
"str_max": 30,
"sound": "metal screeching!",
"sound_fail": "clang!",
"items": [
{ "item": "scrap", "count": [ 2, 8 ] },
{ "item": "steel_chunk", "count": [ 2, 4 ] },
{ "item": "sheet_metal_small", "count": [ 6, 10 ] },
{ "item": "pipe", "count": 1 },
{ "item": "wheel_caster", "count": [ 0, 1 ] }
]
}
},
{
"type": "furniture",
"id": "f_rack",
"name": "display rack",
"description": "A sheet metal shelving unit, with the storage surfaces angled in such a way as to show off the items stored.",
"symbol": "{",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 70,
"required_str": 8,
"hacksaw": {
"duration": "2 minutes",
"message": "You finish cutting the metal.",
"byproducts": [ { "item": "pipe", "count": [ 1, 3 ] }, { "item": "steel_chunk", "count": 1 } ]
},
"flags": [ "TRANSPARENT", "FLAMMABLE_HARD", "PLACE_ITEM", "BLOCKSDOOR", "MOUNTABLE" ],
"rotates_to": "INDOORFLOOR",
"oxytorch": { "duration": "1 seconds", "byproducts": [ { "item": "steel_chunk", "count": [ 2, 6 ] } ] },
"deconstruct": {
"items": [
{ "item": "pipe", "count": [ 6, 12 ] },
{ "item": "sheet_metal", "count": [ 1, 2 ] },
{ "item": "sheet_metal_small", "count": [ 0, 4 ] }
]
},
"max_volume": "1750 L",
"bash": {
"str_min": 10,
"str_max": 30,
"sound": "metal screeching!",
"sound_fail": "clang!",
"items": [
{ "item": "scrap", "count": [ 2, 8 ] },
{ "item": "steel_chunk", "count": [ 2, 4 ] },
{ "item": "sheet_metal_small", "count": [ 6, 10 ] },
{ "item": "pipe", "count": 1 }
]
}
},
{
"type": "furniture",
"id": "f_rack_l",
"looks_like": "f_rack",
"name": "locked display rack",
"description": "A sheet metal shelving unit, with the storage surfaces angled in such a way as to show off the items stored. Metal fasteners with a lock hold the items securely to the rack.",
"symbol": "{",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 70,
"required_str": 8,
"flags": [ "TRANSPARENT", "FLAMMABLE_HARD", "PLACE_ITEM", "BLOCKSDOOR", "MOUNTABLE", "SEALED", "PICKABLE" ],
"rotates_to": "INDOORFLOOR",
"lockpick_result": "f_rack",
"lockpick_message": "With a satisfying click, the lock opens.",
"examine_action": "locked_object_pickable",
"deconstruct": {
"items": [
{ "item": "pipe", "count": [ 6, 12 ] },
{ "item": "sheet_metal", "count": [ 1, 2 ] },
{ "item": "sheet_metal_small", "count": [ 0, 4 ] }
]
},
"max_volume": "1750 L",
"bash": {
"str_min": 10,
"str_max": 30,
"sound": "metal screeching!",
"sound_fail": "clang!",
"items": [
{ "item": "scrap", "count": [ 2, 8 ] },
{ "item": "steel_chunk", "count": [ 2, 4 ] },
{ "item": "sheet_metal_small", "count": [ 6, 10 ] },
{ "item": "pipe", "count": 1 }
]
}
},
{
"type": "furniture",
"id": "f_rack_wood",
"name": "wooden rack",
"symbol": "{",
"description": "A wooden shelving unit with angled storage surfaces designed to show off whatever is stored on it.",
"color": "brown",
"move_cost_mod": -1,
"coverage": 70,
"required_str": 7,
"looks_like": "f_bookcase",
"flags": [ "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "BLOCKSDOOR", "TRANSPARENT" ],
"rotates_to": "INDOORFLOOR",
"deconstruct": {
"items": [
{ "item": "2x4", "count": 12 },
{ "item": "wood_panel", "count": [ 1, 2 ] },
{ "item": "nail", "charges": [ 32, 40 ] }
]
},
"max_volume": "1500 L",
"bash": {
"str_min": 6,
"str_max": 40,
"sound": "smash!",
"sound_fail": "whump.",
"items": [ { "item": "2x4", "count": [ 2, 6 ] }, { "item": "nail", "charges": [ 20, 40 ] }, { "item": "splinter", "count": 12 } ]
}
},
{
"type": "furniture",
"id": "f_rack_coat",
"name": "coat rack",
"description": "A tall wooden pole with a set of hooks used to store outdoor jackets and hats to allow easy access.",
"symbol": "Y",
"color": "brown",
"move_cost_mod": -1,
"coverage": 30,
"required_str": 4,
"flags": [ "TRANSPARENT", "FLAMMABLE", "PLACE_ITEM", "BLOCKSDOOR", "MOUNTABLE" ],
"deconstruct": {
"items": [ { "item": "nail", "charges": [ 2, 6 ] }, { "item": "2x4", "count": 1 }, { "item": "stick_long", "count": 1 } ]
},
"max_volume": "30 L",
"bash": {
"str_min": 6,
"str_max": 30,
"sound": "smash!",
"sound_fail": "whump.",
"items": [ { "item": "splinter", "count": [ 3, 8 ] }, { "item": "nail", "charges": [ 1, 3 ] }, { "item": "2x4", "count": 1 } ]
}
},
{
"type": "furniture",
"id": "f_recycle_bin",
"name": "recycle bin",
"description": "A large plastic bin painted green with a 'recycle' symbol emblazoned on it. While intended to store discarded things to be processed back into a factory, the drastic change in priorities as of late means that these may hold valuable materials.",
"symbol": "{",
"color": "light_green",
"move_cost_mod": -1,
"coverage": 40,
"required_str": 5,
"max_volume": "200 L",
"flags": [ "TRANSPARENT", "FLAMMABLE_ASH", "CONTAINER", "PLACE_ITEM", "MOUNTABLE", "SHORT", "SMALL_HIDE" ],
"bash": {
"str_min": 8,
"str_max": 30,
"sound": "smash!",
"sound_fail": "whump.",
"items": [ { "item": "plastic_chunk", "count": [ 2, 7 ] }, { "item": "pipe", "count": [ 1, 2 ] } ]
}
},
{
"type": "furniture",
"id": "f_safe_c",
"name": "safe",
"looks_like": "f_gunsafe_ml",
"description": "A small, heavy, and near-unbreachable metal box with a rotary combination lock. This one isn't actually locked, just closed.",
"symbol": "X",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 30,
"required_str": 14,
"max_volume": "250 L",
"flags": [ "TRANSPARENT", "CONTAINER", "SEALED", "PLACE_ITEM", "MOUNTABLE" ],
"open": "f_safe_o",
"examine_action": "open_safe",
"bash": {
"str_min": 40,
"str_max": 200,
"sound": "screeching metal!",
"sound_fail": "whump!",
"items": [
{ "item": "steel_chunk", "count": [ 1, 5 ] },
{ "item": "scrap", "count": [ 1, 5 ] },
{ "item": "rock", "count": [ 1, 2 ] }
]
}
},
{
"type": "furniture",
"id": "f_safe_l",
"name": "safe",
"looks_like": "f_safe_c",
"symbol": "X",
"description": "A small, heavy, and near-unbreachable metal box with a rotary combination lock. With something to listen really closely and a hell of a lot of time, you might be able to crack it.",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 30,
"required_str": 14,
"max_volume": "250 L",
"flags": [ "TRANSPARENT", "CONTAINER", "SEALED", "PLACE_ITEM", "MOUNTABLE" ],
"oxytorch": { "result": "f_safe_o", "duration": "14 seconds" },
"examine_action": "safe",
"bash": {
"str_min": 40,
"str_max": 200,
"sound": "screeching metal!",
"sound_fail": "whump!",
"items": [
{ "item": "steel_chunk", "count": [ 1, 5 ] },
{ "item": "scrap", "count": [ 1, 5 ] },
{ "item": "rock", "count": [ 1, 2 ] }
]
}
},
{
"type": "furniture",
"id": "f_safe_o",
"name": "open safe",
"looks_like": "f_safe_c",
"description": "A small, heavy, and near-unbreachable metal box with a rotary combination lock, albeit significantly less secure with the door open.",
"symbol": "O",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 30,
"required_str": 14,
"max_volume": "250 L",
"flags": [ "TRANSPARENT", "CONTAINER", "PLACE_ITEM", "MOUNTABLE" ],
"close": "f_safe_c",
"bash": {
"str_min": 40,
"str_max": 200,
"sound": "screeching metal!",
"sound_fail": "whump!",
"items": [
{ "item": "steel_chunk", "count": [ 1, 5 ] },
{ "item": "scrap", "count": [ 1, 5 ] },
{ "item": "rock", "count": [ 1, 2 ] }
]
}
},
{
"type": "furniture",
"id": "f_trashcan",
"name": "trash can",
"symbol": "&",
"description": "A plastic bin for storing discarded waste as to be disposed of later. Although, considering the circumstances, it might be worth seeing what's inside.",
"color": "light_cyan",
"move_cost_mod": 1,
"required_str": 5,
"max_volume": "40 L",
"flags": [ "TRANSPARENT", "FLAMMABLE_ASH", "CONTAINER", "PLACE_ITEM", "MOUNTABLE", "SHORT", "SMALL_HIDE", "EASY_DECONSTRUCT" ],
"bash": {
"str_min": 1,
"str_max": 1,
"sound": "smash!",
"sound_fail": "whump.",
"items": [ { "item": "trashcan", "count": 1, "damage": [ 2, 4 ] } ]
},
"deconstruct": { "items": [ { "item": "trashcan", "count": 1 } ] }
},
{
"type": "furniture",
"id": "f_metal_trashcan",
"name": "metal trash can",
"symbol": "&",
"looks_like": "f_trashcan",
"description": "A crude metal bin typically used to dispose of waste.",
"//": "The constructed trash can variant, deliberately looks like the original. Does not spawn naturally, although feel free to add it to worldgen.",
"color": "light_cyan",
"move_cost_mod": 1,
"required_str": 5,
"max_volume": "20 L",
"flags": [ "TRANSPARENT", "CONTAINER", "PLACE_ITEM", "MOUNTABLE", "SHORT", "SMALL_HIDE" ],
"deconstruct": {
"items": [
{ "item": "sheet_metal_small", "count": [ 10, 14 ] },
{ "item": "steel_chunk", "count": [ 1, 2 ] },
{ "item": "scrap", "count": [ 6, 12 ] }
]
},
"bash": {
"str_min": 9,
"str_max": 30,
"sound": "metal screeching!",
"sound_fail": "clang!",
"items": [
{ "item": "sheet_metal_small", "count": [ 3, 6 ] },
{ "item": "steel_chunk", "count": [ 6, 8 ] },
{ "item": "scrap", "count": [ 8, 16 ] }
]
}
},
{
"type": "furniture",
"id": "f_wardrobe",
"name": "wardrobe",
"looks_like": "f_dresser",
"description": "A very large wooden cabinet for storing clothes, effectively an upright closet. Could technically be used to store anything else that would fit, though.",
"symbol": "{",
"color": "i_brown",
"move_cost_mod": -1,
"coverage": 85,
"required_str": 9,
"flags": [ "CONTAINER", "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "BLOCKSDOOR", "MOUNTABLE", "SMALL_HIDE" ],
"deconstruct": {
"items": [ { "item": "2x4", "count": 20 }, { "item": "nail", "charges": [ 16, 24 ] }, { "item": "pipe", "count": 2 } ]
},
"max_volume": "500 L",
"bash": {
"str_min": 12,
"str_max": 40,
"sound": "smash!",
"sound_fail": "whump.",
"items": [
{ "item": "2x4", "count": [ 8, 12 ] },
{ "item": "nail", "charges": [ 8, 14 ] },
{ "item": "splinter", "count": [ 4, 10 ] },
{ "item": "pipe", "count": [ 0, 1 ] },
{ "item": "scrap", "count": [ 2, 5 ] }
]
}
},
{
"type": "furniture",
"id": "f_torah_ark",
"name": "Torah Ark",
"description": "An ornately-carved cabinet designed to hold a Torah scroll. This one is decorated with a tree motif, referencing Proverbs 3:18.",
"symbol": "{",
"color": "i_brown",
"move_cost_mod": -1,
"coverage": 85,
"required_str": 9,
"flags": [ "CONTAINER", "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "BLOCKSDOOR", "MOUNTABLE" ],
"deconstruct": {
"items": [ { "item": "2x4", "count": 20 }, { "item": "nail", "charges": [ 16, 24 ] }, { "item": "pipe", "count": 2 } ]
},
"max_volume": "100 L",
"bash": {
"str_min": 12,
"str_max": 40,
"sound": "smash!",
"sound_fail": "whump.",
"items": [
{ "item": "2x4", "count": [ 8, 12 ] },
{ "item": "nail", "charges": [ 8, 14 ] },
{ "item": "splinter", "count": [ 4, 10 ] },
{ "item": "pipe", "count": [ 0, 1 ] },
{ "item": "scrap", "count": [ 2, 5 ] }
]
}
},
{
"type": "furniture",
"id": "f_filing_cabinet",
"name": "filing cabinet",
"looks_like": "f_rack",
"description": "A rack of metal drawers designed to hold various files and paperwork. Paperwork that has more than likely lost all relevance and value by now.",
"symbol": "}",
"color": "dark_gray",
"move_cost_mod": 2,
"coverage": 70,
"required_str": 7,
"flags": [ "PLACE_ITEM", "TRANSPARENT", "CONTAINER", "BLOCKSDOOR", "MOUNTABLE", "NO_SELF_CONNECT" ],
"deconstruct": {
"items": [
{ "item": "sheet_metal", "count": [ 2, 6 ] },
{ "item": "scrap", "count": [ 2, 6 ] },
{ "item": "lock", "count": [ 0, 1 ] }
]
},
"max_volume": "200 L",
"bash": {
"str_min": 8,
"str_max": 30,
"sound": "metal screeching!",
"sound_fail": "clang!",
"items": [ { "item": "scrap", "count": [ 0, 6 ] }, { "item": "sheet_metal", "count": [ 0, 4 ] } ]
}
},
{
"type": "furniture",
"id": "f_utility_shelf",
"name": "utility shelf",
"symbol": "{",
"looks_like": "f_rack",
"description": "A simple heavy-duty plastic and metal shelving unit, intended to store tools and materials for easy access to workers.",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 55,
"required_str": 6,
"flags": [ "PLACE_ITEM", "BLOCKSDOOR", "EASY_DECONSTRUCT", "TRANSPARENT", "SMALL_HIDE" ],
"deconstruct": {
"items": [
{ "item": "sheet_metal_small", "count": [ 4, 6 ] },
{ "item": "plastic_chunk", "count": [ 2, 12 ] },
{ "item": "pipe", "count": [ 4, 8 ] }
]
},
"max_volume": "1500 L",
"bash": {
"str_min": 16,
"str_max": 40,
"sound": "metal screeching!",
"sound_fail": "clang!",
"items": [
{ "item": "scrap", "count": [ 4, 8 ] },
{ "item": "plastic_chunk", "count": [ 1, 6 ] },
{ "item": "sheet_metal_small", "count": [ 1, 4 ] },
{ "item": "pipe", "count": 1 }
]
}
},
{
"type": "furniture",
"id": "f_warehouse_shelf",
"name": "warehouse shelf",
"description": "A huge, sturdy steel shelf for storing pallets of crates in warehouses.",
"symbol": "{",
"looks_like": "f_utility_shelf",
"color": "light_gray",
"move_cost_mod": -1,
"coverage": 95,
"required_str": 10,
"flags": [ "FLAMMABLE_HARD", "PLACE_ITEM", "BLOCKSDOOR", "SMALL_HIDE" ],
"deconstruct": {
"items": [
{ "item": "pipe", "count": [ 6, 12 ] },
{ "item": "sheet_metal", "count": [ 4, 8 ] },
{ "item": "sheet_metal_small", "count": [ 0, 4 ] }
]
},
"max_volume": "3500 L",
"bash": {
"str_min": 8,
"str_max": 30,
"sound": "metal screeching!",
"sound_fail": "clang!",
"items": [
{ "item": "scrap", "count": [ 3, 12 ] },
{ "item": "steel_chunk", "count": [ 3, 6 ] },
{ "item": "sheet_metal_small", "count": [ 6, 10 ] },
{ "item": "pipe", "count": 4 }
]
}
},
{
"type": "furniture",
"id": "f_wood_keg",
"name": "wooden keg",
"looks_like": "f_standing_tank",
"description": "A large standing wooden barrel, completely watertight. Good for storing liquids of all kinds.",
"symbol": "H",
"color": "brown",
"move_cost_mod": -1,
"coverage": 70,
"required_str": -1,
"flags": [ "NOITEM", "SEALED", "ALLOW_FIELD_EFFECT", "TRANSPARENT", "FLAMMABLE", "CONTAINER", "LIQUIDCONT" ],
"examine_action": "keg",
"keg_capacity": 500,
"deconstruct": {
"items": [
{ "item": "2x4", "count": 18 },
{ "item": "nail", "charges": [ 7, 14 ] },
{ "item": "water_faucet", "count": 1 },
{ "item": "sheet_metal_small", "count": [ 12, 20 ] },
{ "item": "scrap", "count": [ 5, 10 ] }
]