-
-
Notifications
You must be signed in to change notification settings - Fork 444
/
Copy pathbiogenerator_designs.dm
275 lines (241 loc) · 8.2 KB
/
biogenerator_designs.dm
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
///////////////////////////////////
///////Biogenerator Designs ///////
///////////////////////////////////
/datum/design/milk
name = "10u Milk"
id = "milk"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 20)
make_reagents = list(/datum/reagent/consumable/milk = 10)
category = list("initial","Kitchen Chemicals")
/datum/design/soymilk
name = "10u Soy Milk"
id = "soymilk"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 50)
make_reagents = list(/datum/reagent/consumable/soymilk = 10)
category = list("initial","Kitchen Chemicals")
/datum/design/soysauce
name = "10u Soy Sauce"
id = "soysauce"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 75)
make_reagents = list(/datum/reagent/consumable/soysauce = 10)
category = list("initial","Kitchen Chemicals")
/datum/design/cream
name = "10u Cream"
id = "cream"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 30)
make_reagents = list(/datum/reagent/consumable/cream = 10)
category = list("initial","Kitchen Chemicals")
/datum/design/black_pepper
name = "10u Black Pepper"
id = "black_pepper"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 25)
make_reagents = list(/datum/reagent/consumable/blackpepper = 10)
category = list("initial","Kitchen Chemicals")
/datum/design/salt
name = "10u Salt"
id = "salt"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 25)
make_reagents = list(/datum/reagent/consumable/sodiumchloride = 10)
category = list("initial","Kitchen Chemicals")
/datum/design/enzyme
name = "10u Universal Enzyme"
id = "enzyme"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 30)
make_reagents = list(/datum/reagent/consumable/enzyme = 10)
category = list("initial","Kitchen Chemicals")
/datum/design/flour_sack
name = "Flour Sack"
id = "flour_sack"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 150)
build_path = /obj/item/reagent_containers/food/condiment/flour
category = list("initial","Food")
/datum/design/rice_sack
name = "Rice Sack"
id = "rice_sack"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 300)
build_path = /obj/item/reagent_containers/food/condiment/rice
category = list("initial","Food")
/datum/design/meat
name = "Synthetic Meat"
id = "meat"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 150)
build_path = /obj/item/reagent_containers/food/snacks/meat/slab
category = list("initial","Food")
/datum/design/egg
name = "Synthetic Egg"
id = "egg"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 100)
build_path = /obj/item/reagent_containers/food/snacks/egg
category = list("initial","Food")
/datum/design/monkey_cube
name = "Monkey Cube"
id = "mcube"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 250)
build_path = /obj/item/reagent_containers/food/snacks/monkeycube
category = list("initial", "Food")
/datum/design/goat_cube
name = "Goat Cube"
id = "gcube"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 350)
build_path = /obj/item/reagent_containers/food/snacks/monkeycube/goat
category = list("initial", "Food")
/datum/design/cow_cube
name = "Cow Cube"
id = "cowcube"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 500)
build_path = /obj/item/reagent_containers/food/snacks/monkeycube/cow
category = list("initial", "Food")
/datum/design/chicken_cube
name = "Chicken Cube"
id = "chickencube"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 200)
build_path = /obj/item/reagent_containers/food/snacks/monkeycube/chicken
category = list("initial", "Food")
/datum/design/sheep_cube
name = "Sheep Cube"
id = "sheepcube"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 350)
build_path = /obj/item/reagent_containers/food/snacks/monkeycube/sheep
category = list("initial", "Food")
/datum/design/seaweed_sheet
name = "Seaweed Sheet"
id = "seaweedsheet"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass= 30)
build_path = /obj/item/reagent_containers/food/snacks/seaweedsheet
category = list("initial","Food")
/datum/design/ez_nut
name = "E-Z Nutrient"
id = "ez_nut"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 10)
build_path = /obj/item/reagent_containers/glass/bottle/nutrient/ez
category = list("initial","Botany Chemicals")
/datum/design/l4z_nut
name = "Left 4 Zed"
id = "l4z_nut"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 20)
build_path = /obj/item/reagent_containers/glass/bottle/nutrient/l4z
category = list("initial","Botany Chemicals")
/datum/design/rh_nut
name = "Robust Harvest"
id = "rh_nut"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 25)
build_path = /obj/item/reagent_containers/glass/bottle/nutrient/rh
category = list("initial","Botany Chemicals")
/datum/design/weed_killer
name = "Weed Killer"
id = "weed_killer"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 50)
build_path = /obj/item/reagent_containers/glass/bottle/killer/weedkiller
category = list("initial","Botany Chemicals")
/datum/design/pest_spray
name = "Pest Killer"
id = "pest_spray"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 50)
build_path = /obj/item/reagent_containers/glass/bottle/killer/pestkiller
category = list("initial","Botany Chemicals")
/datum/design/botany_bottle
name = "Empty Bottle"
id = "botany_bottle"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 5)
build_path = /obj/item/reagent_containers/glass/bottle/nutrient/empty
category = list("initial", "Botany Chemicals")
/datum/design/rollingpapers
name = "Rolling Papers"
id = "rollingpapers"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 50)
build_path = /obj/item/storage/box/rollingpapers
category = list("initial", "Organic Materials")
/datum/design/cloth
name = "Roll of Cloth"
id = "cloth"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 50)
build_path = /obj/item/stack/sheet/cloth
category = list("initial","Organic Materials")
/datum/design/cardboard
name = "Sheet of Cardboard"
id = "cardboard"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 25)
build_path = /obj/item/stack/sheet/cardboard
category = list("initial","Organic Materials")
/datum/design/leather
name = "Sheet of Leather"
id = "leather"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 150)
build_path = /obj/item/stack/sheet/leather
category = list("initial","Organic Materials")
/datum/design/tape
name = "Roll of Tape"
id = "tape"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 50)
build_path = /obj/item/stack/tape
category = list("initial","Organic Materials")
/datum/design/secbelt
name = "Security Belt"
id = "secbelt"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 300)
build_path = /obj/item/storage/belt/security
category = list("initial","Organic Materials")
/datum/design/medbelt
name = "Medical Belt"
id = "medbel"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 300)
build_path = /obj/item/storage/belt/medical
category = list("initial","Organic Materials")
/datum/design/janibelt
name = "Janitorial Belt"
id = "janibelt"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 300)
build_path = /obj/item/storage/belt/janitor
category = list("initial","Organic Materials")
/datum/design/s_holster
name = "Shoulder Holster"
id = "s_holster"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 400)
build_path = /obj/item/storage/belt/holster
category = list("initial","Organic Materials")
/datum/design/rice_hat
name = "Rice Hat"
id = "rice_hat"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 300)
build_path = /obj/item/clothing/head/rice_hat
category = list("initial","Organic Materials")
/datum/design/mutagen
name = "Unstable Mutagen"
id = "unstable_mutagen"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 600)
build_path = /obj/item/reagent_containers/glass/bottle/mutagen
category = list("initial","Botany Chemicals")