-
Notifications
You must be signed in to change notification settings - Fork 0
/
generated-items.rkt
6920 lines (6920 loc) · 187 KB
/
generated-items.rkt
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
#lang racket
; Generated via parse-items.rkt by danm at 2018-11-07T21:27:39 Eastern Standard Time
(require "items.rkt")
(define generated-items
#hash(("OCTACABINET"
.
#s(item$
Octa=Cabinet
"OCTACABINET"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Octa-Cabinet"))
("REACTION1"
.
#s(item$
Thermic-Condensate
"REACTION1"
50000
(Substance:Special Rarity:Rare Product:Tradeable)
"Thermic Condensate"))
("MAINROOMCUBE_W"
.
#s(item$
Square-Deepwater-Chamber
"MAINROOMCUBE_W"
6
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Square Deepwater Chamber"))
("NANOTUBES"
.
#s(item$
Carbon-Nanotubes
"NANOTUBES"
500
(Substance:Catalyst Rarity:Common Product:Component)
"Carbon Nanotubes"))
("ROBOTICARM"
.
#s(item$
Robotic-Arm
"ROBOTICARM"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Robotic Arm"))
("EYEBALL"
.
#s(item$
Hypnotic-Eye
"EYEBALL"
60000
(Substance:Exotic Rarity:Rare Product:Tradeable)
"Hypnotic Eye"))
("BUILDDECAL"
.
#s(item$
Decal
"BUILDDECAL"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Decal"))
("CORRIDOR_SPACE"
.
#s(item$
Freighter-Corridor
"CORRIDOR_SPACE"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Freighter Corridor"))
("BIOROOM"
.
#s(item$
Bio=Dome
"BIOROOM"
10
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Bio-Dome"))
("BUILDLOCKER"
.
#s(item$
Locker
"BUILDLOCKER"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Locker"))
("VEHICLE_ENGINE"
.
#s(item$
Fusion-Engine
"VEHICLE_ENGINE"
1
(Technology:Exocraft
TechnologyRarity:Always
TechShopRarity:Impossible)
"Fusion Engine"))
("MAINT_SEALOCK1"
.
#s(item$
Pearl-Offering
"MAINT_SEALOCK1"
1
(Technology:Maintenance
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Pearl Offering"))
("PLANTPOT1"
.
#s(item$
Flora-Containment
"PLANTPOT1"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Flora Containment"))
("T_BOLT"
.
#s(item$
Upgrade-Module
"T_SHIPJUMP"
1
(Technology:Ship
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Upgrade Module"))
("M_WALL_H"
.
#s(item$
Thin-Metal-Wall
"M_WALL_H"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Thin Metal Wall"))
("WALLLIGHTPINK"
.
#s(item$
Coloured-Light
"WALLLIGHTBLUE"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Coloured Light"))
("BUILDDECALSIMP3"
.
#s(item$
Decal
"BUILDDECAL"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Decal"))
("U_COLDPROT3"
.
#s(item$
|Thermal-Protection-Module-(S)|
"U_COLDPROT3"
360
(Substance:Special Rarity:Rare Product:Consumable)
"Thermal Protection Module (S)"))
("ANTIMATTER"
.
#s(item$
Antimatter
"ANTIMATTER"
5233
(Substance:Special Rarity:Rare Product:Component)
"Antimatter"))
("BASE_MEDPLANT02"
.
#s(item$
Dwarf-Palm
"BASE_MEDPLANT02"
500
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Dwarf Palm"))
("ACCESS1"
.
#s(item$
AtlasPass-v1
"ACCESS1"
825
(Substance:Stellar Rarity:Common Product:Curiousity)
"AtlasPass v1"))
("U_BOLT3"
.
#s(item$
|Boltcaster-Module-(A)|
"U_BOLT3"
240
(Substance:Special Rarity:Rare Product:Consumable)
"Boltcaster Module (A)"))
("LAND3"
.
#s(item$
Magnetised-Ferrite
"LAND3"
82
(Rarity:Uncommon)
"Magnetised Ferrite"))
("FIENDCORE"
.
#s(item$
Larval-Core
"FIENDCORE"
65000
(Substance:Exotic Rarity:Rare Product:Curiousity)
"Larval Core"))
("BASE_TOYSPHERE"
.
#s(item$
Holographic-Globe-Gadget
"BASE_TOYSPHERE"
800
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Holographic Globe Gadget"))
("FUEL2"
.
#s(item$
Condensed-Carbon
"FUEL2"
24
(Rarity:Uncommon)
"Condensed Carbon"))
("C_GFLOOR"
.
#s(item$
Concrete=Framed-Glass-Panel
"C_GFLOOR"
3
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Concrete-Framed Glass Panel"))
("MAINT_PORTAL13"
.
#s(item$
Portal-Glyph
"MAINT_PORTAL1"
1
(Technology:Maintenance
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Portal Glyph"))
("STATUE_ASTRO_G"
.
#s(item$
Gold-Astronaut-Statue
"STATUE_ASTRO_G"
500
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Gold Astronaut Statue"))
("BUILDDECALSIMP1"
.
#s(item$
Decal
"BUILDDECAL"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Decal"))
("U_EXO_ENG2"
.
#s(item$
|Exocraft-Engine-Module-(B)|
"U_EXO_ENG2"
140
(Substance:Special Rarity:Rare Product:Consumable)
"Exocraft Engine Module (B)"))
("ROOMFLOOR"
.
#s(item$
Roof-Platform
"ROOMFLOOR"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Roof Platform"))
("O2_HARVESTER"
.
#s(item$
Oxygen-Harvester
"O2_HARVESTER"
10
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Oxygen Harvester"))
("MAINT_FRIG6"
.
#s(item$
Pressure-Chamber
"MAINT_TECH17"
1
(Technology:Maintenance
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Pressure Chamber"))
("T_SHIELD"
.
#s(item$
Upgrade-Module
"T_SHIPJUMP"
1
(Technology:Ship
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Upgrade Module"))
("ATLAS_SEED_9"
.
#s(item$
Modified-Quanta
"ATLAS_SEED_9"
1000
(Substance:Stellar Rarity:Rare Product:Curiousity)
"Modified Quanta"))
("C_DOOR"
.
#s(item$
Concrete-Door-Frame
"C_DOOR"
2
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Concrete Door Frame"))
("CREATHOLOGRAM"
.
#s(item$
Creature-Hologram
"CREATHOLOGRAM"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Creature Hologram"))
("MAINT_PORTAL8"
.
#s(item$
Portal-Glyph
"MAINT_PORTAL1"
1
(Technology:Maintenance
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Portal Glyph"))
("C_WALL"
.
#s(item$
Concrete-Wall
"C_WALL"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Concrete Wall"))
("UT_WATERJET"
.
#s(item$
Efficient-Water-Jets
"UT_WATERJET"
1
(Technology:Suit TechnologyRarity:Common TechShopRarity:Common)
"Efficient Water Jets"))
("U_SHIPGUN2"
.
#s(item$
|Photon-Cannon-Module-(B)|
"U_SHIPGUN2"
140
(Substance:Special Rarity:Rare Product:Consumable)
"Photon Cannon Module (B)"))
("U_SHIPBLOB4"
.
#s(item$
|Cyclotron-Module-(S)|
"U_SHIPBLOB4"
360
(Substance:Special Rarity:Rare Product:Consumable)
"Cyclotron Module (S)"))
("SHIPSLOT_DMG1"
.
#s(item$
Hull-Fracture
"SHIPSLOT_DMG1"
1
(Technology:Ship
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Hull Fracture"))
("FISHCORE"
.
#s(item$
Hadal-Core
"FISHCORE"
97500
(Substance:Exotic Rarity:Rare Product:Tradeable)
"Hadal Core"))
("MAINROOMCUBE"
.
#s(item$
Square-Room
"MAINROOMCUBE"
3
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Square Room"))
("U_EXO_SUBGUN1"
.
#s(item$
|Nautilon-Cannon-Module-(C)|
"U_EXO_SUBGUN1"
60
(Substance:Special Rarity:Rare Product:Consumable)
"Nautilon Cannon Module (C)"))
("U_ENERGY1"
.
#s(item$
|Life-Support-Module-(B)|
"U_ENERGY1"
140
(Substance:Special Rarity:Rare Product:Consumable)
"Life Support Module (B)"))
("U_PULSE3"
.
#s(item$
|Pulse-Engine-Module-(A)|
"U_PULSE3"
240
(Substance:Special Rarity:Rare Product:Consumable)
"Pulse Engine Module (A)"))
("COMPOUND5"
.
#s(item$
Superconductor
"COMPOUND5"
1500000
(Substance:Special Rarity:Rare Product:Tradeable)
"Superconductor"))
("TRA_MINERALS2"
.
#s(item$
Unrefined-Pyrite-Grease
"TRA_MINERALS2"
6000
(Substance:Exotic Rarity:Common Product:Tradeable)
"Unrefined Pyrite Grease"))
("SUBFUEL"
.
#s(item$
Hydrothermal-Fuel-Cell
"SUBFUEL"
7200
(Substance:Fuel Rarity:Uncommon Product:Consumable)
"Hydrothermal Fuel Cell"))
("BUILDDECALNUM0"
.
#s(item$
Decal
"BUILDDECAL"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Decal"))
("U_PULSE2"
.
#s(item$
|Pulse-Engine-Module-(B)|
"U_PULSE2"
140
(Substance:Special Rarity:Rare Product:Consumable)
"Pulse Engine Module (B)"))
("MIND_ARC"
.
#s(item$
Mind-Arc
"MIND_ARC"
1000
(Substance:Special Rarity:Rare Product:Curiousity)
"Mind Arc"))
("T_LASER"
.
#s(item$
Upgrade-Module
"T_SHIPJUMP"
1
(Technology:Ship
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Upgrade Module"))
("WALLFLAG1"
.
#s(item$
Wall-Flag
"WALLFLAG1"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Wall Flag"))
("PLANTPOT3"
.
#s(item$
Flora-Containment
"PLANTPOT1"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Flora Containment"))
("ATLAS_SEED_7"
.
#s(item$
State-Phasure
"ATLAS_SEED_7"
1000
(Substance:Stellar Rarity:Rare Product:Curiousity)
"State Phasure"))
("BUILDCHAIR"
.
#s(item$
Chair
"BUILDCHAIR"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Chair"))
("EX_RED"
.
#s(item$
Activated-Cadmium
"EX_RED"
450
(Rarity:Rare)
"Activated Cadmium"))
("HEALTHSTATION"
.
#s(item$
Health-Station
"HEALTHSTATION"
5
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Health Station"))
("CRATELCYLINDER"
.
#s(item$
Barrel-Fabricator
"CRATELCYLINDER"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Barrel Fabricator"))
("STATUE_ATLAS_G"
.
#s(item$
Gold-Atlas-Statue
"STATUE_ATLAS_G"
500
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Gold Atlas Statue"))
("BUILDPAVINGTALL"
.
#s(item$
Paving
"BUILDPAVING"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Paving"))
("FARMPROD3"
.
#s(item$
Glass
"FARMPROD3"
13000
(Substance:Special Rarity:Rare Product:Tradeable)
"Glass"))
("LAUNCHER"
.
#s(item$
Launch-Thruster
"LAUNCHER"
1
(Technology:Ship TechnologyRarity:Always TechShopRarity:Impossible)
"Launch Thruster"))
("BUILDDECALVIS4"
.
#s(item$
Decal
"BUILDDECAL"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Decal"))
("SHIPSLOT_DMG4"
.
#s(item$
Radiation-Leak
"SHIPSLOT_DMG4"
1
(Technology:Ship
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Radiation Leak"))
("BUILDBEACON"
.
#s(item$
Beacon
"BUILDBEACON"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Beacon"))
("MAINT_ARTIFACT"
.
#s(item$
Ancient-Lock
"MAINT_ARTIFACT"
1
(Technology:Maintenance
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Ancient Lock"))
("BUILDDECALNUM3"
.
#s(item$
Decal
"BUILDDECAL"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Decal"))
("SPEC_XOHELMET"
.
#s(item$
X.O.-Suit
"SPEC_XOHELMET"
1000
(Substance:Exotic Rarity:Common Product:Consumable)
"X.O. Suit"))
("TRA_ENERGY3"
.
#s(item$
Ohmic-Gel
"TRA_ENERGY3"
15000
(Substance:Exotic Rarity:Common Product:Tradeable)
"Ohmic Gel"))
("U_EXOGUN3"
.
#s(item$
|Exocraft-Cannon-Module-(A)|
"U_EXOGUN3"
240
(Substance:Special Rarity:Rare Product:Consumable)
"Exocraft Cannon Module (A)"))
("U_SHIPLAS2"
.
#s(item$
|Phase-Beam-Module-(B)|
"U_SHIPLAS2"
140
(Substance:Special Rarity:Rare Product:Consumable)
"Phase Beam Module (B)"))
("U_JETBOOST4"
.
#s(item$
|Movement-Module-(S)|
"U_JETBOOST4"
360
(Substance:Special Rarity:Rare Product:Consumable)
"Movement Module (S)"))
("M_WALL_Q"
.
#s(item$
Small-Metal-Wall
"M_WALL_Q"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Small Metal Wall"))
("CUBEFRAME"
.
#s(item$
Cuboid-Room-Frame
"CUBEFRAME"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Cuboid Room Frame"))
("CEILINGLIGHT"
.
#s(item$
Ceiling-Light
"CEILINGLIGHT"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Ceiling Light"))
("EX_BLUE"
.
#s(item$
Activated-Indium
"EX_BLUE"
949
(Rarity:Rare)
"Activated Indium"))
("MAINT_FUEL5"
.
#s(item$
Kinetic-Dynamo
"MAINT_FUEL5"
1
(Technology:Maintenance
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Kinetic Dynamo"))
("SHIPSHIELD"
.
#s(item$
Deflector-Shield
"SHIPSHIELD"
1
(Technology:Ship TechnologyRarity:Always TechShopRarity:Impossible)
"Deflector Shield"))
("U_RAIL3"
.
#s(item$
|Blaze-Javelin-Module-(A)|
"U_RAIL3"
240
(Substance:Special Rarity:Rare Product:Consumable)
"Blaze Javelin Module (A)"))
("U_SHIELDBOOST4"
.
#s(item$
|Shield-Module-(S)|
"U_SHIELDBOOST4"
360
(Substance:Special Rarity:Rare Product:Consumable)
"Shield Module (S)"))
("STATUE_ATLAS_B"
.
#s(item$
Bronze-Atlas-Statue
"STATUE_ATLAS_B"
300
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Bronze Atlas Statue"))
("MAINT_PORTAL2"
.
#s(item$
Portal-Glyph
"MAINT_PORTAL1"
1
(Technology:Maintenance
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Portal Glyph"))
("CAVEPROD3"
.
#s(item$
TetraCobalt
"CAVEPROD3"
6150
(Substance:Exotic Rarity:Rare Product:Curiousity)
"TetraCobalt"))
("TOXICPLANT"
.
#s(item$
Fungal-Cluster
"TOXICPLANT"
3
(Substance:BuildingPart Rarity:Rare Product:BuildingPart)
"Fungal Cluster"))
("SPEC_DECAL02"
.
#s(item$
Galactic-Hub-Decal
"SPEC_DECAL02"
400
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Galactic Hub Decal"))
("GRAVPLANT"
.
#s(item$
Gravitino-Host
"GRAVPLANT"
3
(Substance:BuildingPart Rarity:Rare Product:BuildingPart)
"Gravitino Host"))
("MAINT_TECH4"
.
#s(item$
Input-terminal
"MAINT_TECH4"
1
(Technology:Maintenance
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Input terminal"))
("DOOR2"
.
#s(item$
Holo=Door
"DOOR2"
8
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Holo-Door"))
("PHOTONIX_CORE"
.
#s(item$
Photonix-Core
"PHOTONIX_CORE"
1
(Technology:Ship
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Photonix Core"))
("UT_PROTECT"
.
#s(item$
Shield-Lattice
"UT_PROTECT"
1
(Technology:Suit TechnologyRarity:Common TechShopRarity:Common)
"Shield Lattice"))
("ALLOY4"
.
#s(item$
Lemmium
"ALLOY4"
25000
(Substance:Stellar Rarity:Rare Product:Tradeable)
"Lemmium"))
("CORRIDORT_SPACE"
.
#s(item$
Freighter-Junction
"CORRIDORT_SPACE"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Freighter Junction"))
("VEHICLE_BOOST"
.
#s(item$
Exocraft-Acceleration-Module
"VEHICLE_BOOST"
1
(Technology:Exocraft
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Exocraft Acceleration Module"))
("U_HYPER1"
.
#s(item$
|Hyperdrive-Module-(C)|
"U_HYPER1"
60
(Substance:Special Rarity:Rare Product:Consumable)
"Hyperdrive Module (C)"))
("CUBEFOUND4"
.
#s(item$
Cuboid-Room-Foundation-Strut-Quad
"CUBEFOUND4"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Cuboid Room Foundation Strut Quad"))
("MAINT_PORTAL14"
.
#s(item$
Portal-Glyph
"MAINT_PORTAL1"
1
(Technology:Maintenance
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Portal Glyph"))
("U_EXOBOOST1"
.
#s(item$
|Exocraft-Boost-Module-(C)|
"U_EXOBOOST1"
60
(Substance:Special Rarity:Rare Product:Consumable)
"Exocraft Boost Module (C)"))
("U_SHIPSHIELD4"
.
#s(item$
|Starship-Shield-Module-(S)|
"U_SHIPSHIELD4"
360
(Substance:Special Rarity:Rare Product:Consumable)
"Starship Shield Module (S)"))
("CORRIDOR_WATER"
.
#s(item$
Glass-Tunnel
"CORRIDOR_WATER"
3
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Glass Tunnel"))
("W_DOOR_H"
.
#s(item$
Wooden-Doorway
"W_DOOR_H"
2
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Wooden Doorway"))
("CUBEROOMB_SPACE"
.
#s(item$
Large-Freighter-Room
"CUBEROOM_SPACE"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Large Freighter Room"))
("U_EXOGUN4"
.
#s(item$
|Exocraft-Cannon-Module-(S)|
"U_EXOGUN4"
360
(Substance:Special Rarity:Rare Product:Consumable)
"Exocraft Cannon Module (S)"))
("WALLFLOORLADDER"
.
#s(item$
Infrastructure-Ladder
"WALLFLOORLADDER"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Infrastructure Ladder"))
("PLANT_POOP"
.
#s(item$ Coprite "PLANT_POOP" 30 (Rarity:Common) "Coprite"))
("ROCKETSUB"
.
#s(item$ Tritium "ROCKETSUB" 6 (Rarity:Common) "Tritium"))
("STATUE_WALK_B"
.
#s(item$
Bronze-Walker-Statue
"STATUE_WALK_B"
300
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Bronze Walker Statue"))
("SCANBINOC1"
.
#s(item$
Analysis-Visor
"SCANBINOC1"
1
(Technology:Weapon
TechnologyRarity:Always
TechShopRarity:Impossible)
"Analysis Visor"))
("BUILDDECALNUM4"
.
#s(item$
Decal
"BUILDDECAL"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Decal"))
("MAINT_PORTAL5"
.
#s(item$
Portal-Glyph
"MAINT_PORTAL1"
1
(Technology:Maintenance
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Portal Glyph"))
("UT_SHOT"
.
#s(item$
Shell-Greaser
"UT_SHOT"
1
(Technology:Weapon TechnologyRarity:Common TechShopRarity:Common)
"Shell Greaser"))
("MAINT_TECH8"
.
#s(item$
Cooling-system
"MAINT_TECH8"
1
(Technology:Maintenance
TechnologyRarity:Impossible
TechShopRarity:Impossible)
"Cooling system"))
("CARBONPLANTER"
.
#s(item$
Standing-Planter
"CARBONPLANTER"
1
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Standing Planter"))
("U_HOTPROT3"
.
#s(item$
|Thermal-Protection-Module-(S)|
"U_HOTPROT3"
360
(Substance:Special Rarity:Rare Product:Consumable)
"Thermal Protection Module (S)"))
("DRESSING_TABLE"
.
#s(item$
Appearance-Modifier
"DRESSING_TABLE"
10
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Appearance Modifier"))
("CONTAINER8"
.
#s(item$
Storage-Container
"CONTAINER0"
5
(Substance:BuildingPart Rarity:Common Product:BuildingPart)
"Storage Container"))
("PLANT_DUST"
.
#s(item$ Cactus-Flesh "PLANT_DUST" 28 (Rarity:Rare) "Cactus Flesh"))
("CUBESHAPE"
.
#s(item$