-
Notifications
You must be signed in to change notification settings - Fork 388
Expand file tree
/
Copy pathconstruction_group.json
More file actions
1867 lines (1867 loc) · 40.9 KB
/
construction_group.json
File metadata and controls
1867 lines (1867 loc) · 40.9 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
[
{
"type": "construction_group",
"id": "",
"name": ""
},
{
"type": "construction_group",
"id": "add_mattress_to_bed_frame",
"name": "Add Mattress to Bed Frame"
},
{
"type": "construction_group",
"id": "advanced_object_deconstruction",
"name": "Advanced Object Deconstruction"
},
{
"type": "construction_group",
"id": "armor_reinforced_window",
"name": "Armor Reinforced Window"
},
{
"type": "construction_group",
"id": "board_up_window",
"name": "Board Up Window"
},
{
"type": "construction_group",
"id": "board_up_wood_door",
"name": "Board Up Wood Door"
},
{
"type": "construction_group",
"id": "weld_shut_metal_door",
"name": "Weld Shut Metal Door"
},
{
"type": "construction_group",
"id": "build_a_bellow",
"name": "Build a bellow"
},
{
"type": "construction_group",
"id": "build_a_drop_hammer",
"name": "Build a drop hammer"
},
{
"type": "construction_group",
"id": "build_a_radio_tower",
"name": "Build a radio tower"
},
{
"type": "construction_group",
"id": "build_a_radio_tower_console",
"name": "Build a radio tower console"
},
{
"type": "construction_group",
"id": "build_arc_furnace",
"name": "Build Arc Furnace"
},
{
"type": "construction_group",
"id": "build_armchair",
"name": "Build Armchair"
},
{
"type": "construction_group",
"id": "build_bar_door",
"name": "Build Bar Door"
},
{
"type": "construction_group",
"id": "build_barbed_wire_fence",
"name": "Build Barbed Wire Fence"
},
{
"type": "construction_group",
"id": "build_beaded_curtain",
"name": "Build Beaded Curtain"
},
{
"type": "construction_group",
"id": "build_bed_frame",
"name": "Build Bed Frame"
},
{
"type": "construction_group",
"id": "build_bed_from_scratch",
"name": "Build Bed from Scratch"
},
{
"type": "construction_group",
"id": "build_bench",
"name": "Build Bench"
},
{
"type": "construction_group",
"id": "build_bookcase",
"name": "Build Bookcase"
},
{
"type": "construction_group",
"id": "build_brick_wall",
"name": "Build Brick Wall"
},
{
"type": "construction_group",
"id": "build_brick_wall_from_adobe",
"name": "Build Brick Wall from Adobe"
},
{
"type": "construction_group",
"id": "build_bulletin_board",
"name": "Build Bulletin Board"
},
{
"type": "construction_group",
"id": "build_bunk_bed",
"name": "Build Bunk Bed"
},
{
"type": "construction_group",
"id": "build_butchering_rack",
"name": "Build Butchering Rack"
},
{
"type": "construction_group",
"id": "build_cardboard_fort",
"name": "Build Cardboard Fort"
},
{
"type": "construction_group",
"id": "build_chainlink_fence",
"name": "Build Chainlink Fence"
},
{
"type": "construction_group",
"id": "build_chainlink_gate",
"name": "Build Chainlink Gate"
},
{
"type": "construction_group",
"id": "build_chair",
"name": "Build Chair"
},
{
"type": "construction_group",
"id": "build_charcoal_kiln",
"name": "Build Charcoal Kiln"
},
{
"type": "construction_group",
"id": "build_chickenwire_fence",
"name": "Build Chickenwire Fence"
},
{
"type": "construction_group",
"id": "build_chickenwire_gate",
"name": "Build Chickenwire Gate"
},
{
"type": "construction_group",
"id": "build_clay_kiln",
"name": "Build Clay Kiln"
},
{
"type": "construction_group",
"id": "build_char_purifier",
"name": "Build Charcoal Purifier"
},
{
"type": "construction_group",
"id": "build_coat_rack",
"name": "Build Coat Rack"
},
{
"type": "construction_group",
"id": "build_coffee_table",
"name": "Build Coffee Table"
},
{
"type": "construction_group",
"id": "build_coffin",
"name": "Build Coffin"
},
{
"type": "construction_group",
"id": "build_concrete_column",
"name": "Build Concrete Column"
},
{
"type": "construction_group",
"id": "build_concrete_floor",
"name": "Build Concrete Floor"
},
{
"type": "construction_group",
"id": "build_concrete_roof",
"name": "Build Roof Over Concrete Floor"
},
{
"type": "construction_group",
"id": "build_counter",
"name": "Build Counter"
},
{
"type": "construction_group",
"id": "build_counter_gate",
"name": "Build Counter Gate"
},
{
"type": "construction_group",
"id": "build_crate",
"name": "Build Crate"
},
{
"type": "construction_group",
"id": "build_cupboard",
"name": "Build Cupboard"
},
{
"type": "construction_group",
"id": "build_decorative_tree",
"name": "Build Decorative Tree"
},
{
"type": "construction_group",
"id": "build_deep_river_dock",
"name": "Build Deep River Dock"
},
{
"type": "construction_group",
"id": "build_desk",
"name": "Build Desk"
},
{
"type": "construction_group",
"id": "build_diagonal_small_railroad_track",
"name": "Build Diagonal Small Railroad Track"
},
{
"type": "construction_group",
"id": "build_door",
"name": "Build Door"
},
{
"type": "construction_group",
"id": "build_door_curtain",
"name": "Build Door Curtain"
},
{
"type": "construction_group",
"id": "build_dresser",
"name": "Build Dresser"
},
{
"type": "construction_group",
"id": "build_dry_stone_wall",
"name": "Build Dry Stone Wall"
},
{
"type": "construction_group",
"id": "build_dumpster",
"name": "Build Dumpster"
},
{
"type": "construction_group",
"id": "build_earthbag_wall",
"name": "Build Earthbag Wall"
},
{
"type": "construction_group",
"id": "build_entertainment_center",
"name": "Build Entertainment Center"
},
{
"type": "construction_group",
"id": "build_fence",
"name": "Build Fence"
},
{
"type": "construction_group",
"id": "build_fence_gate",
"name": "Build Fence Gate"
},
{
"type": "construction_group",
"id": "build_fence_posts",
"name": "Build Fence Posts"
},
{
"type": "construction_group",
"id": "build_fermenting_vat",
"name": "Build Fermenting Vat"
},
{
"type": "construction_group",
"id": "build_fire_ring",
"name": "Build Fire Ring"
},
{
"type": "construction_group",
"id": "build_floor_lamp",
"name": "Build floor lamp"
},
{
"type": "construction_group",
"id": "build_floodlight",
"name": "Build floodlight"
},
{
"type": "construction_group",
"id": "rewire_street_light",
"name": "Rewire Street Light"
},
{
"type": "construction_group",
"id": "build_high_end_of_a_concrete_ramp",
"name": "Build High End of a Concrete Ramp"
},
{
"type": "construction_group",
"id": "build_high_end_of_an_earthen_ramp",
"name": "Build High End of a Rammed Earth Ramp"
},
{
"type": "construction_group",
"id": "build_high_end_of_a_wooden_ramp",
"name": "Build High End of a Wooden Ramp"
},
{
"type": "construction_group",
"id": "build_improvised_shelter",
"name": "Build Improvised Shelter"
},
{
"type": "construction_group",
"id": "build_jumper_cable_connector",
"name": "Build Jumper Cable Connector"
},
{
"type": "construction_group",
"id": "build_junk_metal_barrier",
"name": "Build Junk Metal Barrier"
},
{
"type": "construction_group",
"id": "build_junk_metal_door",
"name": "Build Junk Metal Door"
},
{
"type": "construction_group",
"id": "build_junk_metal_floor_noroof",
"name": "Build Junk Metal Floor"
},
{
"type": "construction_group",
"id": "build_junk_metal_floor",
"name": "Build Junk Metal Roof Over Floor"
},
{
"type": "construction_group",
"id": "build_large_metal_support",
"name": "Build Large Metal Support"
},
{
"type": "construction_group",
"id": "build_locker",
"name": "Build Locker"
},
{
"type": "construction_group",
"id": "build_log_sod_roof",
"name": "Build Roof Over Primitive Floor"
},
{
"type": "construction_group",
"id": "build_log_stool",
"name": "Build Log Stool"
},
{
"type": "construction_group",
"id": "build_log_wall",
"name": "Build Log Wall"
},
{
"type": "construction_group",
"id": "build_low_end_of_a_concrete_ramp",
"name": "Build Low End of a Concrete Ramp"
},
{
"type": "construction_group",
"id": "build_low_end_of_an_earthen_ramp",
"name": "Build Low End of a Rammed Earth Ramp"
},
{
"type": "construction_group",
"id": "build_low_end_of_a_wooden_ramp",
"name": "Build Low End of a Wooden Ramp"
},
{
"type": "construction_group",
"id": "build_mailbox",
"name": "Build Mailbox"
},
{
"type": "construction_group",
"id": "build_makeshift_bed",
"name": "Build Makeshift Bed"
},
{
"type": "construction_group",
"id": "build_makeshift_door",
"name": "Build Makeshift Door"
},
{
"type": "construction_group",
"id": "build_mechanical_winch",
"name": "Build mechanical winch"
},
{
"type": "construction_group",
"id": "build_metal_bars",
"name": "Build Metal Bars"
},
{
"type": "construction_group",
"id": "build_metal_charcoal_kiln",
"name": "Build Metal Charcoal Kiln"
},
{
"type": "construction_group",
"id": "build_metal_door",
"name": "Build Metal Door"
},
{
"type": "construction_group",
"id": "build_metal_garage_gate",
"name": "Build metal garage gate"
},
{
"type": "construction_group",
"id": "build_metal_grate_over_a_window",
"name": "Build Metal Grate Over a Window"
},
{
"type": "construction_group",
"id": "build_metal_grate_over_a_window_without_glass",
"name": "Build Metal Grate Over a Window Without Glass"
},
{
"type": "construction_group",
"id": "build_metal_rack",
"name": "Build Metal Rack"
},
{
"type": "construction_group",
"id": "build_metal_roof",
"name": "Build Roof Over Simple Metal Floor"
},
{
"type": "construction_group",
"id": "build_metal_wall",
"name": "Build Metal Wall"
},
{
"type": "construction_group",
"id": "build_mushroom_rack",
"name": "Build Mushroom Rack"
},
{
"type": "construction_group",
"id": "build_palisade_gate",
"name": "Build Palisade Gate"
},
{
"type": "construction_group",
"id": "build_palisade_wall",
"name": "Build Palisade Wall"
},
{
"type": "construction_group",
"id": "build_pile_of_leaves",
"name": "Build Pile of Leaves"
},
{
"type": "construction_group",
"id": "build_pillow_fort",
"name": "Build Pillow Fort"
},
{
"type": "construction_group",
"id": "build_pine_lean_to",
"name": "Build Pine Lean-To"
},
{
"type": "construction_group",
"id": "build_planter",
"name": "Build Planter"
},
{
"type": "construction_group",
"id": "build_plastic_window",
"name": "Build Plastic Window"
},
{
"type": "construction_group",
"id": "build_pontoon_bridge",
"name": "Build Pontoon Bridge"
},
{
"type": "construction_group",
"id": "build_pony_wall",
"name": "Build Pony Wall"
},
{
"type": "construction_group",
"id": "build_privacy_fence",
"name": "Build Privacy Fence"
},
{
"type": "construction_group",
"id": "build_privacy_fence_gate",
"name": "Build Privacy Fence Gate"
},
{
"type": "construction_group",
"id": "build_rammed_earth_wall",
"name": "Build Rammed Earth Wall"
},
{
"type": "construction_group",
"id": "build_reinforced_concrete_roof",
"name": "Build Roof Over Reinforced Concrete Floor"
},
{
"type": "construction_group",
"id": "build_reinforced_concrete_wall",
"name": "Build Reinforced Concrete Wall"
},
{
"type": "construction_group",
"id": "build_reinforced_glass_window",
"name": "Build Reinforced Glass Window"
},
{
"type": "construction_group",
"id": "build_reinforced_plastic_window",
"name": "Build Reinforced Plastic Window"
},
{
"type": "construction_group",
"id": "build_river_bridge",
"name": "Build River Bridge"
},
{
"type": "construction_group",
"id": "build_river_dock_shallow_bridge",
"name": "Build River Dock/Shallow Bridge"
},
{
"type": "construction_group",
"id": "build_road_barricade",
"name": "Build Road Barricade"
},
{
"type": "construction_group",
"id": "build_simple_wood_barricade",
"name": "Build Simple Wooden Barricade"
},
{
"type": "construction_group",
"id": "build_rock_forge",
"name": "Build Rock Forge"
},
{
"type": "construction_group",
"id": "build_roof",
"name": "Build Roof Over Wooden Floor"
},
{
"type": "construction_group",
"id": "build_roof_over_dirt_floor",
"name": "Build Roof Over Dirt Floor"
},
{
"type": "construction_group",
"id": "build_root_cellar",
"name": "Build Root Cellar"
},
{
"type": "construction_group",
"id": "build_rope_fence",
"name": "Build Rope Fence"
},
{
"type": "construction_group",
"id": "build_rope_pulley_system",
"name": "Build Rope & Pulley System"
},
{
"type": "construction_group",
"id": "build_safe",
"name": "Build Safe"
},
{
"type": "construction_group",
"id": "build_sandbag_wall",
"name": "Build Sandbag Wall"
},
{
"type": "construction_group",
"id": "build_screen_door",
"name": "Build Screen Door"
},
{
"type": "construction_group",
"id": "build_screen_mesh_wall",
"name": "Build Screen Mesh Wall"
},
{
"type": "construction_group",
"id": "build_shallow_temporary_bridge",
"name": "Build Shallow Temporary Bridge"
},
{
"type": "construction_group",
"id": "build_sign",
"name": "Build Sign"
},
{
"type": "construction_group",
"id": "build_simple_concrete_wall",
"name": "Build Simple Concrete Wall"
},
{
"type": "construction_group",
"id": "build_sky_light",
"name": "Build Sky Light"
},
{
"type": "construction_group",
"id": "build_sky_light_frame",
"name": "Build Sky Light Frame"
},
{
"type": "construction_group",
"id": "build_small_metal_support",
"name": "Build Small Metal Support"
},
{
"type": "construction_group",
"id": "build_smoking_rack",
"name": "Build Smoking Rack"
},
{
"type": "construction_group",
"id": "build_sofa",
"name": "Build Sofa"
},
{
"type": "construction_group",
"id": "build_split_rail_fence",
"name": "Build Split Rail Fence"
},
{
"type": "construction_group",
"id": "build_split_rail_fence_gate",
"name": "Build Split Rail Fence Gate"
},
{
"type": "construction_group",
"id": "build_standing_tank",
"name": "Build Standing Tank"
},
{
"type": "construction_group",
"id": "build_stone_fireplace",
"name": "Build Stone Fireplace"
},
{
"type": "construction_group",
"id": "build_stone_wall",
"name": "Build Stone Wall"
},
{
"type": "construction_group",
"id": "build_stool",
"name": "Build Stool"
},
{
"type": "construction_group",
"id": "build_straight_small_railroad_track",
"name": "Build Straight Small Railroad Track"
},
{
"type": "construction_group",
"id": "build_straw_bed",
"name": "Build Straw Bed"
},
{
"type": "construction_group",
"id": "build_table",
"name": "Build Table"
},
{
"type": "construction_group",
"id": "build_tarp_lean_to",
"name": "Build Tarp Lean-To"
},
{
"type": "construction_group",
"id": "build_tarp_lean_to_leather",
"name": "Build Leather Tarp Lean-To"
},
{
"type": "construction_group",
"id": "build_thatched_roof",
"name": "Build Thatched Roof Over Dirt Floor"
},
{
"type": "construction_group",
"id": "build_wardrobe",
"name": "Build Wardrobe"
},
{
"type": "construction_group",
"id": "build_warehouse_shelf",
"name": "Build Warehouse Shelf"
},
{
"type": "construction_group",
"id": "build_rain_collector",
"name": "Build Rain Collector"
},
{
"type": "construction_group",
"id": "build_water_well",
"name": "Build Water Well"
},
{
"type": "construction_group",
"id": "build_wattle_and_daub_wall",
"name": "Build Wattle-and-Daub Wall"
},
{
"type": "construction_group",
"id": "build_window",
"name": "Build Window"
},
{
"type": "construction_group",
"id": "build_window_from_tempered_glass",
"name": "Build Window from Tempered Glass"
},
{
"type": "construction_group",
"id": "build_wire_fence",
"name": "Build Wire Fence"
},
{
"type": "construction_group",
"id": "build_wood_stove",
"name": "Build Wood Stove"
},
{
"type": "construction_group",
"id": "build_wood_wall",
"name": "Build Wood Wall"
},
{
"type": "construction_group",
"id": "build_treasure_chest",
"name": "Build Wooden Chest"
},
{
"type": "construction_group",
"id": "build_wooden_floor",
"name": "Build Wooden Floor"
},
{
"type": "construction_group",
"id": "build_wooden_keg",
"name": "Build Wooden Keg"
},
{
"type": "construction_group",
"id": "build_wooden_rack",
"name": "Build Wooden Rack"
},
{
"type": "construction_group",
"id": "build_wooden_railing",
"name": "Build Wooden Railing"
},
{
"type": "construction_group",
"id": "build_wooden_staircase",
"name": "Build Wooden Staircase"
},
{
"type": "construction_group",
"id": "build_workbench",
"name": "Build Workbench"
},
{
"type": "construction_group",
"id": "carpet_floor_green",
"name": "Carpet Floor Green"
},
{
"type": "construction_group",
"id": "carpet_floor_purple",
"name": "Carpet Floor Purple"
},
{
"type": "construction_group",
"id": "carpet_floor_red",
"name": "Carpet Floor Red"
},
{
"type": "construction_group",
"id": "carpet_floor_yellow",
"name": "Carpet Floor Yellow"
},
{
"type": "construction_group",
"id": "chop_tree_trunk_into_planks",
"name": "Chop Tree Trunk Into Planks"
},
{
"type": "construction_group",
"id": "plow_a_paddy_field",
"name": "Plow A Paddy Field"
},
{
"type": "construction_group",
"id": "remove_a_paddy_field",
"name": "Remove A Paddy Field"
},
{
"type": "construction_group",
"id": "gather_clay_from_dirt",
"name": "Gather Clay From Dirt"
},
{
"type": "construction_group",
"id": "build_niter_bed",
"name": "Build Niter Bed"
},
{
"type": "construction_group",
"id": "clean_broken_window",
"name": "Clean Broken Window"
},
{
"type": "construction_group",
"id": "cover_manhole",
"name": "Cover Manhole"
},
{
"type": "construction_group",
"id": "cut_grass",
"name": "Cut Grass"
},
{
"type": "construction_group",
"id": "deconstruct_furniture",
"name": "Deconstruct Furniture"
},
{
"type": "construction_group",
"id": "deconstruct_simple_furniture",
"name": "Deconstruct Simple Furniture"
},
{
"type": "construction_group",
"id": "dig_a_deep_pit",
"name": "Dig a Deep Pit"
},
{
"type": "construction_group",
"id": "dig_a_shallow_pit",
"name": "Dig a Shallow Pit"
},
{
"type": "construction_group",
"id": "dig_downstair",
"name": "Dig Downstair"
},
{
"type": "construction_group",
"id": "dig_grave_and_bury_sealed_coffin",
"name": "Dig Grave and Bury Sealed Coffin"
},
{
"type": "construction_group",
"id": "dig_shallow_grave",
"name": "Fill Shallow Grave"
},
{
"type": "construction_group",
"id": "extrude_resin_floor_and_roof",
"name": "Extrude Resin Floor and Roof"
},
{
"type": "construction_group",
"id": "extrude_resin_floor_no_roof",
"name": "Extrude Resin Floor (no roof)"
},
{
"type": "construction_group",
"id": "extrude_resin_door",
"name": "Extrude Resin Door"
},
{
"type": "construction_group",
"id": "extrude_resin_lattice",
"name": "Extrude Resin Lattice"
},
{
"type": "construction_group",
"id": "extrude_resin_wall",
"name": "Extrude Resin Wall"
},
{
"type": "construction_group",
"id": "fill_pit_with_dirt",
"name": "Fill Pit With Dirt"
},
{
"type": "construction_group",
"id": "fill_salt_water_with_dirt",
"name": "Fill Salt Water With Dirt"
},
{
"type": "construction_group",
"id": "fill_shallow_water_with_dirt",
"name": "Fill Shallow Water With Dirt"
},
{
"type": "construction_group",
"id": "glass_pit",
"name": "Glass Pit"
},
{
"type": "construction_group",
"id": "hang_hanging_meathook",
"name": "Hang Hanging Meathook"
},
{
"type": "construction_group",
"id": "install_autodoc",
"name": "Install Autodoc"
},
{
"type": "construction_group",
"id": "install_autodoc_couch",
"name": "Install Autodoc couch"
},
{
"type": "construction_group",
"id": "install_bars_onto_window",
"name": "Install Bars Onto Window"
},
{
"type": "construction_group",
"id": "install_battery",
"name": "Install Medium Storage Battery"
},
{
"type": "construction_group",
"id": "install_large_storage_battery",
"name": "Install Very Large Storage Battery"
},
{
"type": "construction_group",
"id": "install_freezer",
"name": "Plug In Freezer"
},
{
"type": "construction_group",
"id": "install_industrial_freezer",
"name": "Install Industrial Freezer"
},
{
"type": "construction_group",
"id": "install_glass_freezer",
"name": "Plug In Glass Freezer"
},
{
"type": "construction_group",
"id": "install_minifridge",
"name": "Plug In Minifridge"
},
{
"type": "construction_group",
"id": "install_minifreezer",
"name": "Plug In Minifreezer"