-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitems.ts
More file actions
2725 lines (2725 loc) · 99.3 KB
/
items.ts
File metadata and controls
2725 lines (2725 loc) · 99.3 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
export default {
"007d6afc-59ef-4fb4-9bb7-52ab9bcfec22": {
title: "Steel Pallet",
},
"01d2298b-6cdb-4f4f-bd73-37c76cd60ca3": {
title: "Duct Long",
},
"0229f59d-1ba3-446a-8f9c-df8b0f816e51": {
description:
"The potato shooting mountable spud gun is great for protecting your creations. Connect it to a trigger that is connected to a seat to shoot while seated.",
title: "Mountable Spud Gun",
},
"027bd4ec-b16d-47d2-8756-e18dc2af3eb6": {
title: "Spaceship Block",
},
"04782466-eca1-4ed9-8502-036ea269aed9": {
title: "Valve",
},
"0535b90e-f0a8-491c-8c70-1fc81b939fb4": {
title: "Wires Long",
},
"0603b36e-0bdb-4828-b90c-ff19abcdfe34": {
title: "Brick Block",
},
"068a89ca-504e-4782-9ede-48f710aeea73": {
title: "Stop Sign",
},
"07232236-22eb-4912-8774-ab185f368bb9": {
title: "Pipe Long",
},
"073f92af-f37e-4aff-96b3-d66284d5081c": {
title: "Path Light Block",
},
"08918d4d-29e6-427d-ad8c-1eafcc4af1f9": {
title: "Large Pipe Join",
},
"09ca2713-28ee-4119-9622-e85490034758": {
title: "Barrier Block",
},
"0a597f6d-eb45-4f93-91e5-130e19e0f1f5": {
title: "Ventilation Grid",
},
"0dba257b-b907-4919-baaf-2fefe19f4e24": {
title: "Small Pipe Short",
},
"102565a0-c864-463e-b517-72e82242eec2": {
title: "Open Plant Container",
},
"12862001-666c-4bdd-8326-a1f43610d28b": {
description:
"Allows bearings to rotate in sequence. Perfect for building transforming creations. Needs to be connected to bearings. Activated by connecting a trigger or driver's seat to the controller.",
title: "Controller",
},
"12cc6e9a-6d66-4a9a-bb59-b13a50373fd8": {
description: "Shot or hit capsule to release a friendly woc.",
title: "Woc Capsule",
},
"1325d152-3dd1-41a1-9027-5823c5cb55c4": {
title: "Air Conditioner",
},
"13ffabca-91ec-48ce-9dd6-4f6660714701": {
title: "Grass Container",
},
"14e8f5d0-7d6a-41ab-96a1-fc34588de868": {
title: "Beware Farmbots Sign",
},
"15a8f24b-016a-4db6-adcc-967ee1b6c7b1": {
title: "Large Support Structure",
},
"161786c1-1290-4817-8f8b-7f80de755a06": {
description:
"This robot head is broken. But the sound generator inside seems to still be working. Creative mechanics can probably find a way to make music with this.",
title: "Totebot Head: Bass",
},
"17153a0e-8461-442f-b172-3a899c1ae99f": {
title: "Large Pipe Corner",
},
"18a38c8e-18ec-46c5-be00-cee7724401e2": {
title: "Banana Box",
},
"1a82f776-5989-4471-b09d-0c3f65012fb3": {
title: "Exit Sign",
},
"1c04327f-1de4-4b06-92a8-2c9b40e491aa": {
description:
"This robot head is broken. But the sound generator inside seems to still be working. Creative mechanics can probably find a way to make music with this.",
title: "Totebot Head: Blip",
},
"1daf2b8a-fd2f-4266-9942-c04feede4f7b": {
title: "Satellite Dish",
},
"1e8d93a4-506b-470d-9ada-9c0a321e2db5": {
description:
"Activates stuff. The button activates as long as it remains pressed.",
title: "Button",
},
"1ed1d5a8-466a-4b5e-867b-0d93cd9d2dcb": {
title: "I-Beam Holder",
},
"1ef1f0e8-389c-4eb9-b4a8-784499353f14": {
title: "Staircase Baluster",
},
"1f334b62-8955-4406-8848-91e03228c330": {
title: "Traffic Cone",
},
"203fdf06-b311-49fd-933d-a1c6b671a017": {
title: "Small Pipe Corner",
},
"20f59114-5964-451f-bb47-820da3ebbc3b": {
description:
"Used for avoiding standing. Take a seat and relax or add it to your vehicle so your friends can tag along. Can be connected to triggers which can activate other interactive parts from the saddle.",
title: "Saddle",
},
"2228cef0-f22a-4901-93c5-48e4df52caf6": {
title: "Net Fence",
},
"24001201-40dd-4950-b99f-17d878a9e07b": {
description:
"Highly explosive canister that can detonate by strong collisions or by Spud Guns. This canister has a large explosion radius.",
title: "Large Explosive Canister",
},
"260b4597-f1ac-409c-8e6b-90c998c5fe94": {
description:
"Extends and contracts! Connect it to a trigger to activate. The piston can also be connected to a controller to make it extend and contract in a sequence. Perfect for creating impressive creations.",
title: "Piston",
},
"295451dd-f5b2-421d-9113-b3f704d799d4": {
title: "Staircase Railing Join",
},
"29ededf7-6436-41bf-84f4-8fb5361d29ea": {
title: "Small Support Structure",
},
"2ba72fca-443a-49e4-8eb2-073c4226866e": {
title: "Tubes Long",
},
"2ccaa006-008e-4069-8de1-15668050f92e": {
title: "Skull Sign",
},
"31768765-5a08-499a-a7e6-7e7613363f75": {
title: "I-Beam Corner",
},
"33102836-a94d-4ab3-9864-3d54d32c230d": {
title: "Wires Bend",
},
"3384010e-bc1c-42bb-83ef-dbc78a1f9636": {
description:
"Contains all the information you need to learn how to build amazing machines and become a true Scrap Mechanic.",
title: "Handbook",
},
"33d5f0c1-f80c-478a-b69d-9edafe376474": {
title: "Support Structure",
},
"34d22fc5-0a45-4d71-9aaf-64df1355c272": {
description:
"Shot or hit capsule to release a very angry bot. Paint bots in different colors, so they turn on each other instead of coming after you.",
title: "Green Totebot Capsule",
},
"387095d6-5aba-45e3-abd0-098710c268f8": {
title: "Small Pipe Four Way",
},
"3878d965-de4a-4e7b-a15a-73cc032158b6": {
title: "Arrow Sign",
},
"38ee0516-abc5-4e46-9195-c763610d7ec4": {
description:
"Makes bearings turn left and right. Can be connected to an engine to control the direction of travel. Can also be connected to triggers that can be activated from the saddle.",
title: "Driver's Saddle",
},
"3efe715f-8745-475f-a609-5e7cbe09a8ef": {
description:
"Used for maximum relaxation. Sit down and relax or add it to your vehicle to stay nice and clean on the go. Can be connected to triggers which can activate other interactive parts from the bathtub.",
title: "Bathtub",
},
"3fa0afca-7715-459e-86fa-2a81cf3027b8": {
title: "Sink",
},
"4152ce33-9b43-4c51-80a3-e0b4fe38841d": {
description:
"A plastic shark mount prop from the survival game Raft. It seems to have some mechanical joints inside. Maybe it can bite?",
title: "Raft Shark Mount",
},
"42786777-c148-4e13-9bab-e460564e79c3": {
description:
"Used for avoiding standing. Take a seat and relax or add it to your vehicle so your friends can tag along. Can be connected to triggers which can activate other interactive parts from the seat.",
title: "Seat",
},
"448f7c93-699d-47b4-8e3e-296971067ef4": {
description: "Spud Gun with single potato shot.",
title: "Spud Gun",
},
"45e5c193-8896-4687-a4b0-cf4b2da047d1": {
title: "Support Pillar Stand",
},
"4a1b886b-913e-4aad-b5b6-6e41b0db23a6": {
description:
"Everything you place on the bearing will revolve. Bearings can also be connected to an engine or the driver's seat to be controlled in different ways.",
title: "Bearing",
},
"4c5c3ffd-9aaf-4ded-a7c5-452d239cac32": {
description:
"Shot or hit capsule to release a very angry bot. Paint bots in different colors, so they turn on each other instead of coming after you.",
title: "Tapebot Capsule",
},
"4c6e27a2-4c35-4df3-9794-5e206fef9012": {
description:
"This robot head is broken. But the sound generator inside seems to still be working. Creative mechanics can probably find a way to make music with this.",
title: "Totebot Head: Percussion",
},
"4c7b8096-b8ca-4341-bfe9-d31d2d5443b8": {
title: "Long I-Beam",
},
"4f1c0036-389b-432e-81de-8261cb9f9d57": {
title: "Pipe Corner",
},
"50007ac9-e97d-4b32-9fd6-de919c8a34a4": {
title: "Small Windshield",
},
"50f624e6-7e33-4118-8252-2219e73e9af1": {
description:
"Shot or hit capsule to release a very angry bot. Paint bots in different colors, so they turn on each other instead of coming after you.",
title: "Red Tapebot Capsule",
},
"53349c8d-14e8-4055-bd79-a1ab56fe876e": {
title: "Square Window",
},
"53e8478f-517f-4ea0-be9c-f4a357400cc1": {
title: "Large Pipe Long",
},
"56545d5c-556d-4cd5-9125-6e34acf37c3d": {
title: "U-Beam",
},
"57fad8e9-2aff-40c3-9d5c-8f81573b58b9": {
title: "Small Rectangular Window",
},
"5a106512-9284-40de-be68-2c186e903097": {
title: "Small Pipe Four Way Tee",
},
"5cc12f03-275e-4c8e-b013-79fc0f913e1b": {
description:
"Build on the lift to create freely movable constructions that won't be fixed to the ground. Can be elevated and lowered as well as lift creations that have flipped over.",
title: "Lift",
},
"5e96037a-a338-490a-a76f-6b4d820f8e46": {
description:
"Enough of these can make things fly. Needs to be connected to a trigger or the driver's seat in order to activate.",
title: "Thruster",
},
"5f41af56-df4c-4837-9b3c-10781335757f": {
title: "Glass Block",
},
"635eee58-9a36-437f-9e30-78dab0cbcc59": {
title: "Staircase Ramp",
},
"647296c4-41ef-4173-8a54-d2a1ae1e89c3": {
title: "Tubes Short",
},
"6546c293-a5aa-4442-80d5-a2819f077746": {
description:
"Powers bearings. An engine with fixed power and adjustable speed. A slow engine with a lot of strength. Can be connected to a driver's seat or triggers.",
title: "Electric Engine",
},
"68c2baa5-1274-4bfd-8b12-6e522123f4de": {
title: "Large Tank",
},
"695d66c8-b937-472d-8bc2-f3d72dd92879": {
description:
"Let there be visibility! Connect to a trigger to turn on and off. Adjustable beam range.",
title: "Warehouse Spotlight",
},
"697e3b80-d3f7-4f4a-aba2-23611a45f967": {
title: "Fuse Box",
},
"69e362c3-32aa-4cd1-adc0-dcfc47b92c0d": {
title: "Wheel",
},
"6a720005-ba27-4cfc-8fb3-b1af8b9c8bd3": {
title: "Table Support",
},
"6b78fb4b-2af9-4a01-a7c5-7e333d245adb": {
title: "Metal Column",
},
"6be64f78-927b-4f61-b645-20adfbd9bfce": {
title: "Wires Short",
},
"6f0c29d3-f8c1-4314-b13d-db637ed89061": {
title: "Duct Join",
},
"70bf77d0-c9dd-4232-9e05-fbf7f49bd62c": {
title: "Construction Zone Sign",
},
"749f69e0-56c9-488c-adf6-66c58531818f": {
title: "Glass Tile Block",
},
"763fd838-7ed5-420e-8984-c2ae86da1e5c": {
title: "Large Rectangular Window",
},
"7735cab3-56d7-4d52-b615-090d021e8fdc": {
description: "Shot or hit capsule to release a friendly glowbug.",
title: "Glowbug Capsule",
},
"7826f497-426b-42cb-a857-0d784f3ab2f3": {
title: "Big Pot",
},
"7a0e9041-9dd5-4cb1-b804-69ee16c45efe": {
title: "Large Windshield",
},
"7cf717d7-d167-4f2d-a6e7-6b2c70aa3986": {
description:
"Unlimited toggling on demand. The Switch activates whatever it's connected to, making it indispensible when you want to turn things on and off with a single push. It can activate an engine, a thruster, the controller and more.",
title: "Switch",
},
"7ece2c9b-bc74-45b7-b5f1-4c6f41a03a7a": {
title: "Beetroot Box",
},
"8024db09-9147-4fe3-a747-00bc30ab724b": {
title: "Small Pipe Bend",
},
"80550b05-f9eb-433c-9773-2af3beb1479d": {
title: "Vegetable Box",
},
"80bc2b9f-98a9-44e4-9cb8-d4ec7e95b40f": {
title: "Baby Duck Statuette",
},
"818f4e15-ff51-4fed-b874-723a25d62e1c": {
description:
"Add it to your vehicle or use it as a door bell. Honk at your friends to avoid accidents. Set the pitch and connect it to a trigger to activate it.",
title: "Horn",
},
"8336bf8b-cde0-46a0-b995-5000cba4f27f": {
title: "Staircase Short Railing",
},
"85379fe5-da83-4aa2-b9c2-d67476ad6079": {
title: "Staircase Long Railing",
},
"862f6857-3050-4a84-8191-6a7cbb50bd1a": {
title: "Large Pipe Short",
},
"87878e83-8170-4796-9401-6baba45ccef2": {
title: "Short I-Beam",
},
"885ab381-007d-4a60-99e3-c58dec54c880": {
title: "Tubes Join",
},
"89f6c762-c0ed-44ad-b3f1-a60dbdd889c5": {
title: "Small Potted Plant",
},
"8aedf6c2-94e1-4506-89d4-a0227c552f1e": {
title: "Metal Block 1",
},
"8b684022-254b-41af-a58c-ec4b14791000": {
title: "Fruit Box",
},
"8bcc5a38-b566-45fe-b47e-45118ee70d2d": {
title: "Orange Box",
},
"8c4b9721-3de4-4ae3-a7d1-6f66a16d1368": {
title: "Metal Window",
},
"8c7efc37-cd7c-4262-976e-39585f8527bf": {
description:
"Every mechanic's favorite tool. Connects interactive parts together, for example: a gas engine to bearings or a thruster to a driver's seat.",
title: "Connect Tool",
},
"8ca49bff-eeef-4b43-abd0-b527a567f1b7": {
title: "Tile Block",
},
"8d3b98de-c981-4f05-abfe-d22ee4781d33": {
description:
"Highly explosive canister that can detonate by strong collisions or by Spud Guns. This canister has a small explosion radius.",
title: "Small Explosive Canister",
},
"8d7be7bf-37c9-44d6-8adf-fc87b141cadf": {
title: "Shelf Support",
},
"8f7fd0e7-c46e-4944-a414-7ce2437bb30f": {
description:
"The Timer allows you delay the interaction between two interactive parts. For example, between a switch and a controller. It goes great with Logic Gates.",
title: "Timer",
},
"903b0823-4ce1-48e6-9702-aeaa7598c347": {
title: "Tubes Corner",
},
"927d80d8-84ee-44f0-9d8b-cb7a688e0b6c": {
title: "Small Pipe Long",
},
"99b7fd1d-7126-4928-bfc2-f82befcbd905": {
title: "Caution Sign",
},
"9c1f1f76-7391-4661-ae32-e96250030229": {
description:
"Shot or hit capsule to release a very angry bot. Paint bots in different colors, so they turn on each other instead of coming after you.",
title: "Farmbot Capsule",
},
"9c6d8dba-1783-4c42-8a02-6af1c5d63ec6": {
title: "Small Pipe Six Way",
},
"9d7e182f-c5d6-45e9-af21-1c24977b30c9": {
title: "Duct Short",
},
"9eead4cf-4743-486e-99be-a553c4c10740": {
title: "Mattress",
},
"9f0f56e8-2c31-4d83-996c-d00a9b296c3f": {
description:
"The Logic Gate is a powerful block that allows you to build basic logical functions. By pressing E on the block, the mechanic can choose between different logic gate types. The logic gate can be connected to other logic gates, triggers, timers and more. Great for making advanced creations.",
title: "Logic Gate",
},
"9f37d9e9-be8d-49c8-a7ac-e59c67786083": {
title: "Pipe Join",
},
"a052e116-f273-4d73-872c-924a97b86720": {
description:
"This robot head is broken. But the sound generator inside seems to still be working. Creative mechanics can probably find a way to make music with this.",
title: "Totebot Head: Synth Voice",
},
"a481138b-fae9-47c9-9bc2-91b6d2e2bf52": {
description:
"Adds bounce and stability. Great for vehicles to prevent them from easily tipping over. This suspension has a lot of bounce, making it ideal for off-road vehicles.",
title: "Off-Road Suspension",
},
"a5198434-2639-4cb0-8e01-865bc4d9b791": {
title: "Danger Sign",
},
"a6c6ce30-dd47-4587-b475-085d55c6a3b4": {
title: "Concrete Block 1",
},
"a6ec1dcc-07e9-418a-819e-904e28a32f63": {
title: "Mug",
},
"a8164438-65fa-4840-8bc2-766fad543841": {
title: "Wires Concave Bend",
},
"aa5325da-03f9-46cc-9655-983ee7ac2ab2": {
title: "Support Pillar",
},
"aa8d89eb-919b-42f4-8b58-af6f0d5856bc": {
description:
"Adds bounce and stability. Great for vehicles to prevent them from easily tipping over. This suspension is small, but has a firmer bounce.",
title: "Sport Suspension",
},
"add3acc6-a6fd-44e8-a384-a7a16ce13c81": {
description:
"It detects, it activates! The sensor activates when detecting any kind of surface that comes into its view, and has a reach of ten blocks. It can activate an engine, a thruster, the controller and more.",
title: "Sensor",
},
"aec1ff30-9347-4166-9cb7-f414e1563d9d": {
title: "Maintenance Ship Door",
},
"b050533f-200b-4253-9532-c2cfa273f982": {
title: "Duct Holder",
},
"b1dd7967-da2a-4ff5-a90f-bbd7e9bae4d7": {
title: "Mannequin Hand",
},
"b4498227-6650-4e52-b5a6-6db7a7b34d14": {
title: "Do Not Enter Sign",
},
"b50a014c-0785-4b1b-b63e-51cfdb7e49ad": {
title: "Staircase Banister",
},
"b9775316-7272-4a66-a8a9-179108d76f18": {
title: "I-Beam End",
},
"bb443a05-b5b9-4fad-90fc-5e04aa90fd8f": {
title: "Potted Blue Flower",
},
"bbc5cc77-443d-4aa7-a175-ebdeb09c2df3": {
title: "Pipe Short",
},
"bc575e0c-d1aa-438e-9f3d-0a80f4ea915f": {
title: "Potted Cactus",
},
"c3990931-b471-4e89-beb5-0baaef47f0af": {
title: "Wooden Crate",
},
"c40683f3-d9ce-4067-af24-3514c1867a1a": {
title: "Metal Support",
},
"c4609540-bc32-4c3f-83b8-3b6926878012": {
title: "Potted Seed Plant",
},
"c5e56da5-bc3f-4519-91c2-b307d36e15aa": {
title: "Screw",
},
"c60b9627-fc2b-4319-97c5-05921cb976c6": {
description:
"Paint any part or block to personalize your creations or even make beautiful art! Paint using the left mouse button and delete with the right. Press 'Q' to open the color selector. Simply hold down left mouse button and drag if you want to paint larger surfaces.",
title: "Paint Tool",
},
"c6ebae46-8e69-4ddd-a3c0-895d887027bd": {
title: "Small Pipe Five Way",
},
"c79a1857-a5c7-4616-b507-f1b151c31fe8": {
title: "Falling Objects Sign",
},
"c89f7bc8-5720-474d-989d-761916a411b2": {
title: "Mannequin Boot",
},
"c8c07259-bc23-45a1-8a4c-585962274f19": {
title: "Shelf",
},
"c938e84c-ff59-4e7e-a87c-5211ac903927": {
title: "Reflector Antenna",
},
"ca003562-fde7-463c-969e-f8334ae54387": {
description:
"Used for avoiding standing. Take a seat and relax or add it to your vehicle so your friends can tag along. Can be connected to triggers which can activate other interactive parts from the toilet. Don't forget to flush!",
title: "Toilet",
},
"ce350b5c-cebb-42b0-b8ba-1bf084a0090c": {
title: "Satellite Reflector Dish",
},
"cec1d36c-b48a-43d2-9667-5e53b62dd4c5": {
title: "Potted Vine Plant",
},
"cf3fdcfc-a7e5-4497-b000-ffda67dd8db7": {
description:
"Makes bearings turn left and right. Can be connected to an engine to control the direction of travel. Can also be connected to triggers that can be activated from the seat.",
title: "Driver's Seat",
},
"d1421af8-6f80-4413-8099-2c6b217fb929": {
title: "Potted Blooming Cactus",
},
"d509a432-85f9-419f-8b02-8d58b1082f97": {
title: "Welcome Sign",
},
"d5da6d42-69e2-49ca-8def-3339bf9f0d35": {
title: "Staircase Landing",
},
"d5e36413-b3c1-4636-8447-3410c352ec7b": {
description:
"An engine with fixed speed and adjustable power, ideally suited to powering vehicles. Can be connected to a driver's seat or triggers.",
title: "Gas Engine",
},
"d71d8897-5af6-4adc-b626-50e45f931157": {
title: "Medium Tank",
},
"d97a85c5-7c0f-4bfb-9ef4-ce6ecdab9539": {
title: "Duct Corner",
},
"da993c70-ba90-4748-8a22-6246bad32930": {
description:
"Shot or hit capsule to release a very angry bot. Paint bots in different colors, so they turn on each other instead of coming after you.",
title: "Haybot Capsule",
},
"db66f0b1-0c50-4b74-bdc7-771374204b1f": {
title: "Big Wheel",
},
"dbd509b5-b7cc-43cf-9a89-b3befecfe991": {
title: "Shelf Pillar",
},
"de467c9b-a0ab-4e20-95ae-0e5fe8140989": {
title: "Onion Box",
},
"df3734e2-f04b-443f-b568-fe5b076646c7": {
title: "Potted Plant",
},
"df953d9c-234f-4ac2-af5e-f0490b223e71": {
title: "Wood Block 1",
},
"dfefc9d7-db03-4d25-ad85-eae1d824d8c0": {
description:
"All hits, all the time. Those beastly bots have hijacked and are now transmitting classic selections from their deeply unusual taste in music. Activate it by interacting with it or by connecting it to a trigger.",
title: "Radio",
},
"e02620a5-371b-4d63-be35-fd8a0552eba9": {
title: "Staircase Wedge",
},
"e1273b8a-945b-4080-81eb-cbf79961cccb": {
title: "Small Pipe Tee",
},
"e2a0770b-9bb9-4b3b-b9f2-994b534b79f3": {
title: "Toilet Paper",
},
"e3e58881-69e6-4593-8211-017bcd72c907": {
title: "Tower Pole Top",
},
"e585bcd6-5828-4a37-8ec7-dffb561f0956": {
title: "Antenna",
},
"ed185725-ea12-43fc-9cd7-4295d0dbf88b": {
description:
"This mighty sledgehammer will let you push loose items around by hitting them.",
title: "Sledgehammer",
},
"ed27f5e2-cac5-4a32-a5d9-49f116acc6af": {
description:
"Let there be visibility! Connect to a trigger to turn on and off. Adjustable beam range.",
title: "Headlight",
},
"edd445cc-c298-4ce3-9a58-745c1bee1bc7": {
title: "Nut",
},
"f0438bd7-6307-4991-943f-d78b04877d96": {
title: "Cucumber Box",
},
"f0713386-8c95-493d-b013-e8e53e32d1ed": {
title: "Wires Convex Bend",
},
"f0cba95b-2dc4-4492-8fd9-36546a4cb5aa": {
title: "Cardboard Block",
},
"f37b101c-508b-4630-9f9d-47ef1c834183": {
title: "Small Tank",
},
"f5786e5d-8366-4ebf-be00-f3a4b036a77b": {
title: "Staircase Step",
},
"f6687d52-efc1-4f00-b573-bee4363ee14f": {
title: "Carrot Box",
},
"f80026c5-2019-4f87-8abd-345bd23aa156": {
title: "Tall Shelf Support",
},
"f9e8707a-62f8-4051-84e9-c2e17b686d9e": {
title: "Tower Pole",
},
"faae6e1a-f431-49fd-b8b8-16f12139ee88": {
title: "Plant Container",
},
"fbc0fbfb-803c-42dd-aace-1ae10e55a785": {
title: "Duct End",
},
"fdb8b8be-96e7-4de0-85c7-d2f42e4f33ce": {
description:
"Weld your creations together! Select the Weld Tool and left-click on a loose creation, then left-click on a surface of another creation to weld them together. You can also join touching parts on the lift. Hold the left mouse button on the first part and drag to the part you wish to weld together.",
title: "Weld Tool",
},
"ff2207c1-e40b-416f-8bdd-66a9efd6d1a9": {
title: "Pillow",
},
"00284190-1484-4286-a198-b2ddef768c2e": {
description:
"Adds shock absorption and provides stability. Great for vehicles to prevent them from easily flipping over. This suspension has a lot of bounce, making it ideal for off-road vehicles.",
title: "Off-Road Suspension 2",
},
"004bb5ee-34ba-484a-924b-31412d898e7e": {
title: "obj_survivalobject_elevatordoor_left",
},
"011c1ffd-7146-4e8d-8c18-17247d768ae2": {
title: "obj_spaceship_wall04",
},
"02ee2a98-bd8d-4a09-bb69-38edaf66b8e1": {
title: "Scrap Stone",
},
"04680945-5bb7-4a8a-9246-24c6c2b977d1": {
title: "Industrial Beam Four Way",
},
"04733746-4090-4d63-aff1-47dafae506fd": {
title: "Small Narrow Warehouse Ramp",
},
"0539121b-9588-4c64-bdd0-25b0a29b081a": {
title: "obj_harvests_trees_pine03_p08",
},
"056e5ff1-f030-40df-946a-b830bf494c92": {
description:
"Can stores more gas and loads gas in to Gas Engines and other interactive parts that require Gas when connected.",
title: "Gas Container",
},
"05c81c17-3780-4edb-80a4-1648c25ca460": {
title: "obj_harvests_trees_pine03_p09",
},
"061b5d4b-0a6a-4212-b0ae-9e9681f1cbfb": {
title: "Wood Block 3",
},
"06c564e2-ca8d-4843-94e9-322cb835f59e": {
title: "obj_harvests_trees_birch02_p04",
},
"06fd0e52-f791-43a6-9fbd-5a8a6260f3f2": {
title: "Giant Pipe Glass Straight",
},
"079b7a15-7718-444b-8560-7717109dabff": {
title: "obj_harvests_trees_birch03_p06",
},
"080ef1dd-07a7-4d31-86b8-ac907e1468bf": {
title: "Berry Billboard",
},
"094ceb5a-995b-431f-87f4-aac091494ae4": {
title: "Scaffold Frame",
},
"096d4daf-639e-4947-a1a6-1890eaa94464": {
description:
"Connect it to a Mountable Spud Gun with a trigger to shoot potato ammo.",
title: "Potato Ammo Container",
},
"0a2544c9-902d-42e2-91af-f35dad9c5d0e": {
title: "obj_harvests_trees_birch03_p01",
},
"0b114031-5065-4365-922d-3980d791e00d": {
title: "obj_harvest_stonechunk01",
},
"0b423e11-50dd-4272-92a2-506f42c992d4": {
title: "obj_harvests_trees_birch03_p04",
},
"0bc74539-df8a-47c7-aad8-d55d809a01e4": {
title: "Banana Crate",
},
"0c077288-d15d-45d6-8439-3dabe7144034": {
title: "Water Dispenser",
},
"0c07dba0-be79-40fd-9ed8-5a1c34e2d196": {
title: "Shack Roof",
},
"0c9cc5bb-af2f-4023-b8d8-cd7d52a60efe": {
description:
"Powers bearings. An engine with fixed power and adjustable speed. A weak engine with an adjustable speed. Can be connected to a driver's seat or triggers. Upgrade for more connection points and less battery consumption.",
title: "Electric Engine 2",
},
"0dff60c2-f7ae-4c13-b9c4-962ec1039be8": {
title: "Mop Set",
},
"0e695319-afd0-405b-85c8-289df8614c52": {
title: "Carpet Roll",
},
"0ebf382a-e2e4-4c46-a48e-87808308c1e3": {
title: "Warehouse sink",
},
"0ee4fc0a-9f69-4d67-b5c2-09ea5a22712f": {
title: "Encryptor Holder",
},
"0f638bd7-0c0d-4ba3-9ba2-af0b523ddff4": {
title: "Broken Concrete Large",
},
"10079046-6400-42fd-bcd6-f66af6cfd8b8": {
title: "Ship Compartment",
},
"10149368-0d49-44c1-9521-dbec436eb770": {
title: "obj_harvest_log_l02b",
},
"1016cafc-9f6b-40c9-8713-9019d399783f": {
title: "Metal Block 2",
},
"103fc4e6-7e57-465e-a86d-983343415877": {
description: "Bucket with water.",
title: "Water Bucket",
},
"10590ecd-7d2f-4ff9-a6de-e749870ae8b8": {
title: "Warehouse Crate",
},
"109d044d-6002-4779-be04-34501d78408f": {
title: "obj_destructable_tape_acrosstheroom02",
},
"109e1514-4f3b-4bd9-8d95-2d81fdb8fb25": {
title: "Stand Support Corner",
},
"1147e59d-6940-42b4-840b-07f05054f5e0": {
title: "Crude Oil",
},
"1226cfd3-4fc8-4f9e-b21a-0c9576e2ef2f": {
title: "obj_tool_handbook",
},
"126be16e-10c1-4ccd-82c5-368edc7f766a": {
title: "obj_harvests_stones_p04",
},
"135967d2-7faa-495f-98f4-5130350396a4": {
title: "obj_harvest_log_m01",
},
"13cf98bf-d033-4be5-a0a0-560cb946a4ba": {
title: "obj_harvests_trees_birch02_p01",
},
"1503a160-bf1f-4b86-8406-b11250c71a28": {
title: "obj_destructable_tape_taperoll04",
},
"15ee8b4c-d58b-462f-a0a0-5c9bcdff495f": {
title: "obj_harvests_trees_pine03_p10",
},
"16ba2d22-7b96-4c5e-9eb7-f6422ed80ad4": {
title: "Warehouse Spotlight",
},
"16ed53cc-a45b-4f64-92d4-2db93bf33e1c": {
title: "Giant Pipe Glass Corner",
},
"176f4537-b245-4ba2-a318-da12e15bf789": {
title: "Frame Beam Corner",
},
"1872d83a-d1a1-4cb7-ad46-9e4468d2548c": {
description:
"Allows bearings to rotate in sequence. Perfect for building transforming creations. Needs to be connected to bearings. Activated by connecting a trigger or driver's seat to the controller.",
title: "Controller 2",
},
"1897ee42-0291-43e4-9645-8c5a5d310398": {
title: "Wood Block 2",
},
"189aabd7-a3a4-4ba1-886e-e2e21dd1772b": {
title: "obj_destructable_tape_tape06",
},
"196586b5-897f-40f3-926c-b5dfa4f772eb": {
title: "Ship Blinds",
},
"1986c34b-c318-4992-ab1d-34a1531a4095": {
title: "obj_harvests_trees_pine02_p04",
},
"1991e0c6-4dd8-4e44-9da8-7fdf4d938fdc": {
title: "Office Table A",
},
"1aac8942-38ac-4a83-bc16-6d33436c0934": {
title: "Ship Ventilation",
},
"1b24e0a4-3f04-4dfe-83ea-612da2eff922": {
title: "obj_harvests_trees_pine01_p07",
},
"1b47f36c-7c6e-451c-87b2-34fdf33d6989": {
title: "Generator Pipe Tee",
},
"1b927252-ee6d-420e-8bb4-ae42fcb43ba8": {
title: "Hollow Concrete",
},
"1bace005-426c-4b44-8530-ef8698210a6f": {
title: "obj_destructable_tape_rooftape04",
},
"1bdc2111-691c-465f-84d1-0e5faeca9897": {
title: "obj_destructable_tape_tape02",
},
"1bfccc0a-828f-475c-882c-87d5a96054c9": {
description:
"An engine with fixed speed and adjustable power, ideally suited to powering vehicles. Can be connected to a driver's seat or trigger. Upgrade for more connection points and less gas consumption.",
title: "Gas Engine 1",
},
"1c6756ca-3a60-4dcb-a5d1-353edf818308": {
title: "Broccoli Seed",
},
"1c83675f-7c77-4cbb-875b-79d4bd46100d": {
title: "Craftbot",
},
"1d4793af-cb66-4628-804a-9d7404712643": {
description:
"It detects, it activates! The sensor activates when detecting any kind of surface that comes into its view, and has a reach of ten blocks. It can activate an engine, a thruster, the controller and more.",
title: "Sensor 1",
},
"1d667253-849c-4f9f-9109-1a2d91795247": {
title: "obj_harvests_trees_birch01_p04",
},
"1dc643c9-6f8e-478a-8ebb-4adf3cb9960f": {
title: "Stand Support",
},
"1dcd74ca-39ba-4b00-a36a-3381b25055f4": {
title: "Tomato Crate",
},
"1df6f1af-fd39-443a-9fd7-dd389e0ba5c8": {
title: "Ship Floor Tile",
},
"1e2485d7-f600-406e-b348-9f0b7c1f5077": {
title: "Packing Lamp",
},
"1e89879f-1171-4bcd-9465-db7f740ab09e": {
title: "obj_robotparts_tapebothead01",
},
"1f343b76-3622-4e4b-9de4-238d43d60734": {
title: "Office Chair Base",
},
"1f5d8b77-183c-4f8b-83d7-a3940d090926": {
title: "Master Battery Info Board",
},
"1f7ac0bb-ad45-4246-9817-59bdf7f7ab39": {
title: "Scrap Metal Block",
},
"1fc74a28-addb-451a-878d-c3c605d63811": {
title: "Scrap Wood Block",
},
"20821431-de44-4d54-8877-60833316104e": {
title: "Warehouse Ventilation Mount",
},
"20b3577f-a2f1-44f3-a22c-83f792732771": {
title: "Large Taperoll",
},
"20bd2885-d184-44ae-b72b-f90b786f8664": {
title: "Hard Work Sign",
},
"20dcd41c-0a11-4668-9b00-97f278ce21af": {
description:
"It detects, it activates! The sensor activates when detecting any kind of surface that comes into its view, and has a reach of ten blocks. It can activate an engine, a thruster, the controller and more.",
title: "Sensor 5",
},
"20e0b1f2-dd7b-4b69-9308-b6c26c0b0e6e": {
title: "obj_destructable_tape_corridor01",
},
"2133fdb7-5e3c-4fb9-99ad-5b4f8bf5c6e5": {
title: "obj_harvests_trees_birch03_p03",
},
"220b201e-aa40-4995-96c8-e6007af160de": {
title: "Rusted Metal Block",
},
"221badef-0313-419c-9a7c-7469d26b0d5b": {
title: "Man Sign",
},
"2289e96f-f9c6-440c-b7c9-ce9474da8264": {
title: "Sale Sign",
},
"22947bb1-7c64-477c-8656-d7857df39b78": {
title: "obj_harvests_trees_birch01_p01",
},
"22beade5-38ca-47b4-a2ee-32403f58a862": {
title: "Banana Seed",
},
"22c526fc-b212-4e4e-af00-1cc69d9129e1": {
title: "Small Ship Corner Floor Mold",
},
"22f3e797-82f5-4819-a085-c3cc28ec9025": {
description:
"Powers bearings. An engine with fixed power and adjustable speed. A weak engine with an adjustable speed. Can be connected to a driver's seat or triggers. Upgrade for more connection points and less battery consumption.",
title: "Electric Engine 5",
},
"2311afca-ca99-4b7b-a209-8382ed7ea356": {
title: "obj_harvests_trees_pine01_p10",
},
"2354cd24-3dd3-4db5-84ab-df64c32d2c72": {
description:
"Allows bearings to rotate in sequence. Perfect for building transforming creations. Needs to be connected to bearings. Activated by connecting a trigger or driver's seat to the controller.",
title: "Controller 4",
},
"23572f75-03c0-4c33-b643-70250d0e4ae0": {
title: "Generator Coil Corner",
},
"239c9c71-e5c7-4ccb-ad40-7bdbb32f3cc9": {
title: "Cup Holder",
},
"23ac6823-51a4-4581-b8ca-061c76f093f6": {
title: "Haystack",
},
"243afe95-8058-47b0-bccf-49cc0445cd55": {
title: "obj_robotpart_totebotleg",
},
"2448a709-a8ec-4d69-a927-b9ab195cd83f": {
title: "obj_spaceship_wall06",
},
"256fde90-4225-4c22-b107-fcaabe2bec9c": {
title: "obj_survivalobject_elevatorfan",
},
"25a5ffe7-11b1-4d3e-8d7a-48129cbaf05e": {
title: "Extruded Metal Block",
},
"26119eb4-0e0e-4730-85ad-8a8c44f3d18c": {
title: "Scaffold Pallet Ramp",
},
"265bf568-a801-4ce6-8ac3-d20526443bc5": {
title: "obj_destructable_tape_big_walltape04",
},
"267e0c93-62e3-45ad-9470-a14035cb9ca4": {
title: "Ember",
},
"275e4258-ff57-45ae-8e2f-b82204c56d16": {
title: "Ship Ventilation Panel",
},
"276fd55b-ae54-4a7a-ace6-fddd2d3370a5": {
description:
"Use the Drill to mine square rocks for stone and metal. Put it on a bearing that is connected to a engine and drive it in to a square rock.",
title: "Drill",
},
"27a221b1-9809-4df1-901a-caafe119c9b6": {
description: "Use it in a Dressbot to make new clothes.",
title: "Garment Box (Rare)",
},
"27c00cfb-4e7f-45fc-a037-f9a941464ce6": {
title: "Fresh Neon Sign",
},
"286faea5-83db-4f53-8813-1ce81309a059": {
title: "obj_destructable_tape_cocoon02",
},
"2893e707-36b3-4ff1-bb3c-ef1b5524ae13": {
title: "Crane Loading Floor",
},
"29c5c1eb-a3bd-45ae-b823-aeb28d70593a": {
title: "Ship Opening Floor Mold",
},
"2aa8cb2c-2311-440c-8162-829ee394fbc2": {
title: "Shack Wall",
},
"2af00456-b22e-4743-b338-a91934aba7c5": {
description:
"Cooks delicious food that will fill up your health bar or revive fallen friends.",
title: "Cookbot",
},
"2b9c6e87-1b75-4a57-8979-74d9f95668ba": {
description:
"Used for avoiding standing. Take a seat and relax or add it to your vehicle so your friends can tag along. Can be connected to triggers which can activate other interactive parts from the seat.",
title: "Seat 2",
},
"2bacc33e-60fb-40c3-b751-ef76f79392c7": {
title: "Elevator Sign",
},
"2bbaf389-4ef7-4dca-b7ee-397cc30f3862": {
title: "Metal Storage Corner C",
},
"2bc619a3-c884-4e60-9e78-6c04487a48c5": {
title: "obj_spaceship_wall12_damaged",
},
"2c4a2633-153a-4800-ba3d-2ac0d993b9c8": {
title: "Woc Milk",
},
"2c90e412-9476-40d9-a440-228c888186bd": {
title: "Warehouse Brick Lamp",
},
"2d3016f7-febe-416e-93bc-41d80ca3910d": {
description:
"Used for avoiding standing. Take a seat and relax or add it to your vehicle so your friends can tag along. Can be connected to triggers which can activate other interactive parts from the saddle.",
title: "Saddle 1",
},
"2d503740-f2da-41a1-ae5c-3c49d44e3bb2": {
title: "obj_destructable_tape_rooftape03",
},