forked from yowshi/BlobExpansion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblob_overwrite.json
More file actions
2805 lines (2805 loc) · 90.5 KB
/
Copy pathblob_overwrite.json
File metadata and controls
2805 lines (2805 loc) · 90.5 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
[
{
"copy-from": "bfeed",
"id": "bfeed",
"type": "AMMO",
"category": "fuel",
"name": "blob feed",
"name_plural": "blob feed",
"description": "An amalgam of various types of organic material, contains everything the blob needs to be healthy. You think…",
"weight": 0,
"volume": 0,
"to_hit": -3,
"bashing": 8,
"material": "flesh",
"fuel": { "energy": 1 },
"symbol": "*",
"color": "red",
"count": 25,
"ammo_type": "bfeed"
},
{
"copy-from": "bframegrow",
"id": "bframegrow",
"type": "TOOL",
"category": "tools",
"flags": [ "ALLOWS_REMOTE_USE" ],
"name": "growing blob frame",
"description": "A growing vehicle frame made of bone. It's coated in a thick layer of ooze, though there's greater amounts on the bindings. It's not quite tough enough to use.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "bone", "flesh" ],
"symbol": ";",
"color": "green",
"use_action": {
"target": "gloople",
"msg": "You test the frame; It wiggles, and then collapses into an lump of goo.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "You test the frame; it gives easily, it's still not sturdy enough"
}
},
{
"copy-from": "bitergrow",
"id": "bitergrow",
"type": "TOOL",
"category": "tools",
"name": "growing keratinous mass",
"name_plural": "growing keratinous mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "blue",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "biter",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "cluttergrow",
"id": "cluttergrow",
"type": "TOOL",
"category": "tools",
"name": "growing beaded mass",
"name_plural": "growing beaded mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "magenta",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "clutter",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "freeziegrow",
"id": "freeziegrow",
"type": "TOOL",
"category": "tools",
"name": "growing icy mass",
"name_plural": "growing icy mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "light_blue",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "freezie",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "frostiegrow",
"id": "frostiegrow",
"type": "TOOL",
"category": "tools",
"name": "growing cold mass",
"name_plural": "growing cold mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "light_blue",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "frostie",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "fuzzlegrow",
"id": "fuzzlegrow",
"type": "TOOL",
"category": "tools",
"name": "growing hairy mass",
"name_plural": "growing hairy mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "brown",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "fuzzle",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "glooplegrow",
"id": "glooplegrow",
"type": "TOOL",
"category": "tools",
"name": "growing gelatinous mass",
"name_plural": "growing gelatinous mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "light_green",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "gloople",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "glowiegrow",
"id": "glowiegrow",
"type": "TOOL",
"category": "tools",
"name": "growing glowing mass",
"name_plural": "growing glowing mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "cyan",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "glowie",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "graygrow",
"id": "graygrow",
"type": "TOOL",
"category": "tools",
"name": "growing gray mass",
"name_plural": "growing gray mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "light_gray",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "gray",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "horrorgrow",
"id": "horrorgrow",
"type": "TOOL",
"category": "tools",
"name": "growing spike-studded mass",
"name_plural": "growing spike-studded mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "blue",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "horror",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "inkiegrow",
"id": "inkiegrow",
"type": "TOOL",
"category": "tools",
"name": "growing gasoline-laced mass",
"name_plural": "growing gasoline-laced mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "brown",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "inkie",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "meltiegrow",
"id": "meltiegrow",
"type": "TOOL",
"category": "tools",
"name": "growing acidic mass",
"name_plural": "growing acidic mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "light_red",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "meltie",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "oozlegrow",
"id": "oozlegrow",
"type": "TOOL",
"category": "tools",
"name": "growing ooze",
"name_plural": "growing ooze",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "green",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "oozle",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "queengrow",
"id": "queengrow",
"type": "TOOL",
"category": "tools",
"name": "growing mass of tendrils",
"name_plural": "growing mass of tendrils",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "red",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "queen",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "razorqueengrow",
"id": "razorqueengrow",
"type": "TOOL",
"category": "tools",
"name": "growing spiked mass",
"name_plural": "growing spiked mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "cyan",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "razorqueen",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "sharpgrow",
"id": "sharpgrow",
"type": "TOOL",
"category": "tools",
"name": "growing spiny mass",
"name_plural": "growing spiny mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "light_blue",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "sharp",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "sicklegrow",
"id": "sicklegrow",
"type": "TOOL",
"category": "tools",
"name": "growing spiky mass",
"name_plural": "growing spiky mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "blue",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "gelrazor",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "sparkiegrow",
"id": "sparkiegrow",
"type": "TOOL",
"category": "tools",
"name": "growing bright mass",
"name_plural": "growing bright mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "cyan",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "sparkie",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "stickiegrow",
"id": "stickiegrow",
"type": "TOOL",
"category": "tools",
"name": "growing viscous mass",
"name_plural": "growing viscous mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "yellow",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "stickie",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "torchiegrow",
"id": "torchiegrow",
"type": "TOOL",
"category": "tools",
"name": "growing warm mass",
"name_plural": "growing warm mass",
"description": "Not quite fully grown, this blob requires nourishment to fully develop.",
"weight": "900 g",
"volume": "100 ml",
"price": 100,
"to_hit": -2,
"material": [ "flesh" ],
"symbol": ";",
"color": "light_red",
"flags": [ "ALLOWS_REMOTE_USE" ],
"use_action": {
"target": "torchie",
"msg": "The blob balloons to full size.",
"type": "delayed_transform",
"transform_age": 3600,
"not_ready_msg": "Whatever it's doing, it's not done yet."
}
},
{
"copy-from": "gloopletread",
"id": "gloopletread",
"type": "vehicle_part",
"name": "Gelatinous track",
"item": "gloopletread",
"location": "under",
"symbol": "|",
"broken_symbol": "x",
"color": "light_green",
"broken_color": "light_green",
"durability": 250,
"damage_modifier": 10,
"folded_volume": 1,
"breaks_into": [ { "item": "glooplegrow" } ],
"description": "A set of continuous, interlocking tracks made out of blob. They can be used in place of wheels, and provide good traction and off-road performance.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"wheel_type": "treads",
"contact_area": 2500,
"rolling_resistance": 6,
"flags": [ "WHEEL", "VARIABLE_SIZE", "MULTISQUARE", "TRACKED", "FOLDABLE" ]
},
{
"id": "oozletread",
"type": "vehicle_part",
"copy-from": "gloopletread",
"name": "Oozing track",
"item": "oozletread",
"breaks_into": [ { "item": "oozlegrow" } ]
},
{
"id": "graytread",
"type": "vehicle_part",
"copy-from": "gloopletread",
"name": "Gray track",
"item": "graytread",
"breaks_into": [ { "item": "graygrow" } ]
},
{
"id": "biter",
"type": "vehicle_part",
"name": "biting blob",
"item": "biter",
"location": "center",
"symbol": "t",
"broken_symbol": "#",
"color": "blue",
"broken_color": "blue",
"durability": 400,
"damage_modifier": 10,
"folded_volume": 1,
"breaks_into": [ { "item": "bitergrow" } ],
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"description": "A living blob, transformed into a heavy vehicle weapon.",
"flags": [ "TURRET", "FOLDABLE", "OBSTACLE" ]
},
{
"id": "clutter",
"type": "vehicle_part",
"name": "gel shooter",
"item": "clutter",
"location": "on_roof",
"symbol": "t",
"broken_symbol": "#",
"color": "magenta",
"broken_color": "magenta",
"durability": 200,
"damage_modifier": 10,
"folded_volume": 1,
"breaks_into": [ { "item": "cluttergrow" } ],
"description": "A living blob, transformed into a heavy vehicle weapon.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "TURRET", "FOLDABLE" ]
},
{
"id": "freezie",
"type": "vehicle_part",
"name": "frost lancer",
"item": "freezie",
"location": "on_roof",
"symbol": "t",
"broken_symbol": "#",
"color": "light_blue",
"broken_color": "light_blue",
"durability": 200,
"damage_modifier": 10,
"folded_volume": 1,
"breaks_into": [ { "item": "freeziegrow" } ],
"description": "A living blob, existing in a super-cooled state and transformed into a heavy vehicle weapon.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "TURRET", "FOLDABLE" ]
},
{
"copy-from": "frostie_ram",
"id": "frostie_ram",
"type": "vehicle_part",
"name": "ice ram",
"item": "frostie",
"location": "structure",
"symbol": "X",
"broken_symbol": "0",
"color": "light_blue",
"broken_color": "light_blue",
"durability": 5000,
"damage_modifier": 200,
"folded_volume": 1,
"breaks_into": [ { "item": "frostiegrow" } ],
"description": "A living blob, existing in a super-cooled state. It will absorb damage in a vehicle collision and deliver additional damage to the other object in the collision. It should be mounted on the edge of the vehicle, preferably the front.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "OBSTACLE", "PROTRUSION", "SHARP", "FOLDABLE", "ARMOR" ]
},
{
"copy-from": "frostie_trunk",
"id": "frostie_trunk",
"type": "vehicle_part",
"name": "ice pack",
"item": "frostie",
"location": "center",
"symbol": "H",
"broken_symbol": "#",
"color": "light_blue",
"broken_color": "light_blue",
"difficulty": 3,
"durability": 100,
"epower": 0,
"size": 1000,
"damage_modifier": 80,
"folded_volume": 1,
"breaks_into": [ { "item": "frostiegrow" } ],
"description": "A living blob, existing in a super-cooled state. It will keep items stored in it cold, reducing the speed at which food and drink rots.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "CARGO", "OBSTACLE", "FRIDGE", "COVERED", "FOLDABLE" ]
},
{
"copy-from": "frostie_wall",
"id": "frostie_wall",
"type": "vehicle_part",
"name": "icy windshield",
"item": "frostie",
"location": "center",
"symbol": "\"",
"broken_symbol": "0",
"color": "light_blue",
"broken_color": "light_blue",
"durability": 500,
"damage_modifier": 80,
"folded_volume": 1,
"breaks_into": [ { "item": "frostiegrow" } ],
"description": "A living blob, existing in a super-cooled state. It is transparent, and can be used to see out of the vehicle.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "OBSTACLE", "WINDOW", "FOLDABLE" ]
},
{
"copy-from": "frostie_wheel",
"id": "frostie_wheel",
"type": "vehicle_part",
"name": "snow slider",
"item": "frostie_wheel",
"location": "under",
"symbol": "|",
"broken_symbol": "x",
"color": "light_blue",
"broken_color": "light_blue",
"durability": 500,
"damage_modifier": 200,
"folded_volume": 1,
"breaks_into": [ { "item": "frostiegrow" } ],
"description": "A living blob, existing in a super-cooled state. It acts as a wheel.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"rolling_resistance": 1.5,
"wheel_type": "standard",
"contact_area": 153,
"flags": [ "WHEEL", "FOLDABLE", "EXTRA_DRAG", "SHARP", "TRACKED" ]
},
{
"id": "frostie_wheel_sea",
"type": "vehicle_part",
"name": "icy sea skimmer",
"item": "frostie_hull",
"location": "under",
"symbol": "|",
"broken_symbol": "x",
"color": "light_blue",
"broken_color": "light_blue",
"durability": 500,
"damage_modifier": 200,
"folded_volume": 1,
"breaks_into": [ { "item": "frostiegrow" } ],
"description": "A living blob, existing in a super-cooled state. It acts as a boat hull.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "FLOATS", "FOLDABLE", "EXTRA_DRAG", "SHARP", "TRACKED" ]
},
{
"id": "fuzzle",
"type": "vehicle_part",
"name": "snapping ooze",
"item": "fuzzle",
"location": "center",
"symbol": "t",
"broken_symbol": "#",
"color": "brown",
"broken_color": "brown",
"durability": 600,
"damage_modifier": 10,
"folded_volume": 1,
"breaks_into": [ { "item": "fuzzlegrow" } ],
"description": "A living blob, transformed into a heavy vehicle weapon.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "TURRET", "FOLDABLE", "OBSTACLE" ]
},
{
"id": "gel_lamp",
"type": "vehicle_part",
"name": "gel lamp",
"item": "glowie",
"fuel_type": "battery",
"symbol": "#",
"broken_symbol": "x",
"color": "cyan",
"broken_color": "cyan",
"durability": 200,
"epower": 0,
"bonus": 200,
"damage_modifier": 10,
"folded_volume": 1,
"breaks_into": [ { "item": "glowiegrow" } ],
"description": "A living, glowing blob. It produces a bright light that illuminates a narrow cone outside the vehicle when turned on. During installation, you can choose what direction to point the light, so multiple gel lamps can illuminate the sides or rear, as well as the front.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "CONE_LIGHT", "FOLDABLE" ]
},
{
"id": "gel_lamp_d",
"type": "vehicle_part",
"copy-from": "gel_lamp",
"name": "directed gel lamp"
},
{
"id": "gloople_amalgam",
"type": "vehicle_part",
"name": "gel retriever",
"item": "gloople",
"location": "under",
"symbol": "R",
"broken_symbol": ";",
"color": "light_green",
"broken_color": "light_green",
"durability": 250,
"epower": 0,
"size": 300,
"damage_modifier": 10,
"folded_volume": 1,
"description": "A living blob, formed to act as a scoop. Use the vehicle controls to turn it on or off. When turned on, it will scoop up any loose items that it travels over, putting them into the vehicle's storage.",
"breaks_into": [ { "item": "glooplegrow" } ],
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "SCOOP", "CARGO", "FOLDABLE" ]
},
{
"copy-from": "gloople_belt",
"id": "gloople_belt",
"type": "vehicle_part",
"name": "gel harness",
"item": "gloople",
"location": "on_seat",
"symbol": ",",
"broken_symbol": ",",
"color": "light_green",
"broken_color": "light_green",
"durability": 250,
"bonus": 25,
"damage_modifier": 10,
"folded_volume": 1,
"description": "A living blob, reformed as a belt and attached to a seat.",
"breaks_into": [ { "item": "glooplegrow" } ],
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "SEATBELT", "FOLDABLE" ]
},
{
"id": "gloople_cross",
"type": "vehicle_part",
"copy-from": "gloople_horizontal",
"symbol": "c",
"flags": [ "FOLDABLE", "MOUNTABLE", "INITIAL_PART" ]
},
{
"copy-from": "gloople_tank",
"id": "gloople_tank",
"type": "vehicle_part",
"name": "capsule (10L)",
"item": "gloople_tank",
"location": "fuel_source",
"symbol": "O",
"broken_symbol": "#",
"color": "light_green",
"broken_color": "light_green",
"durability": 250,
"size": 5000,
"damage_modifier": 10,
"folded_volume": 20,
"breaks_into": [ { "item": "glooplegrow" } ],
"description": "A living blob, formed into a storage space for holding liquids. If filled with the appropriate fuel for the vehicle's engine, the engine will automatically draw fuel from the tank when the engine is on. If filled with water, you can access the water from a water faucet, if one is installed in the vehicle. You can also use a rubber hose to siphon liquids out of a tank.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "FOLDABLE", "FLUIDTANK" ]
},
{
"id": "gloople_tank_large",
"type": "vehicle_part",
"copy-from": "gloople_tank",
"name": "gel tank (60L)",
"item": "gloople_tank_large",
"size": 60000,
"folded_volume": 240
},
{
"copy-from": "gloople_horizontal",
"id": "gloople_horizontal",
"type": "vehicle_part",
"name": "gel framework",
"item": "gloople",
"location": "structure",
"symbol": "h",
"broken_symbol": "#",
"color": "light_green",
"broken_color": "light_green",
"durability": 250,
"damage_modifier": 10,
"folded_volume": 1,
"breaks_into": [ { "item": "glooplegrow" } ],
"description": "A living blob, shaped to provide attachment points for other blobs. Other vehicle components and blobs can be mounted on it. If all the frames and components of a vehicle are foldable or made from blobs, the vehicle can be folding into a small package and picked up as a normal item.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "FOLDABLE", "MOUNTABLE" ]
},
{
"id": "gloople_horizontal_2",
"type": "vehicle_part",
"copy-from": "gloople_horizontal",
"symbol": "="
},
{
"id": "gloople_ne",
"type": "vehicle_part",
"copy-from": "gloople_horizontal",
"symbol": "u"
},
{
"id": "gloople_nw",
"type": "vehicle_part",
"copy-from": "gloople_horizontal",
"symbol": "y"
},
{
"copy-from": "gloople_plate",
"id": "gloople_plate",
"type": "vehicle_part",
"name": "gel reinforcement",
"item": "gloople",
"location": "armor",
"symbol": "X",
"broken_symbol": "*",
"color": "light_green",
"broken_color": "light_green",
"durability": 250,
"damage_modifier": 10,
"folded_volume": 1,
"breaks_into": [ { "item": "glooplegrow" } ],
"description": "A living blob, acting as armor plate.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "ARMOR", "FOLDABLE" ]
},
{
"copy-from": "gloople_roof",
"id": "gloople_roof",
"type": "vehicle_part",
"name": "gel roof",
"item": "gloople",
"location": "roof",
"symbol": "#",
"broken_symbol": "#",
"color": "light_green",
"broken_color": "light_green",
"durability": 250,
"damage_modifier": 10,
"folded_volume": 1,
"breaks_into": [ { "item": "glooplegrow" } ],
"description": "A living blob, placed as roof.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "ROOF", "FOLDABLE" ]
},
{
"id": "gloople_se",
"type": "vehicle_part",
"copy-from": "gloople_horizontal",
"symbol": "n"
},
{
"copy-from": "gloople_seat",
"id": "gloople_seat",
"type": "vehicle_part",
"name": "gel seat",
"item": "gloople",
"location": "center",
"symbol": "#",
"broken_symbol": "*",
"color": "light_green",
"broken_color": "light_green",
"durability": 250,
"damage_modifier": 10,
"folded_volume": 1,
"breaks_into": [ { "item": "glooplegrow" } ],
"description": "A living blob, formed into a comfy couch. You can sit here.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "SEAT", "BED", "BOARDABLE", "BELTABLE" ]
},
{
"id": "gloople_sw",
"type": "vehicle_part",
"copy-from": "gloople_horizontal",
"symbol": "b"
},
{
"copy-from": "gloople_trunk",
"id": "gloople_trunk",
"type": "vehicle_part",
"name": "gel receptacle",
"item": "gloople",
"location": "center",
"symbol": "H",
"broken_symbol": "#",
"color": "light_green",
"broken_color": "light_green",
"durability": 250,
"size": 400,
"damage_modifier": 10,
"folded_volume": 1,
"breaks_into": [ { "item": "glooplegrow" } ],
"description": "A living blob, shaped into a cargo space.",
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "CARGO", "COVERED", "FOLDABLE" ]
},
{
"id": "gloople_trunk_u",
"type": "vehicle_part",
"copy-from": "gloople_trunk",
"name": "gel pouch (under)",
"location": "under"
},
{
"id": "gloople_vertical",
"type": "vehicle_part",
"copy-from": "gloople_horizontal",
"symbol": "j"
},
{
"id": "gloople_vertical_2",
"type": "vehicle_part",
"copy-from": "gloople_horizontal",
"symbol": "H"
},
{
"copy-from": "gloople_wheel",
"id": "gloople_wheel",
"type": "vehicle_part",
"name": "gelatinous wheel",
"item": "gloople_wheel",
"location": "under",
"symbol": "|",
"broken_symbol": "x",
"color": "light_green",
"broken_color": "light_green",
"durability": 250,
"damage_modifier": 10,
"folded_volume": 1,
"description": "A living blob. It acts as a wheel.",
"breaks_into": [ { "item": "glooplegrow" }, { "item": "water", "count": [ 50, 100 ] } ],
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"rolling_resistance": 1.75,
"wheel_type": "standard",
"contact_area": 153,
"flags": [ "WHEEL", "FOLDABLE", "TRACKED" ]
},
{
"copy-from": "gloopleaisle_horizontal",
"id": "gloopleaisle_horizontal",
"type": "vehicle_part",
"name": "gel walkway",
"item": "gloople",
"location": "center",
"symbol": "=",
"broken_symbol": "#",
"color": "light_green",
"broken_color": "light_green",
"durability": 250,
"damage_modifier": 10,
"folded_volume": 1,
"description": "A living blob, formed into a walkway.",
"breaks_into": [ { "item": "glooplegrow" } ],
"requirements": { "install": { "time": "5 m" }, "repair": { "time": "1 m", "using": [ [ "blobrep", 1 ] ] } },
"flags": [ "AISLE", "BOARDABLE", "FOLDABLE" ]
},
{
"id": "gloopleaisle_vertical",
"type": "vehicle_part",