Skip to content

Commit e499b93

Browse files
author
notnotmelon
committed
other: Added "+" icons under technologies which previously had no effects listed.
1 parent a9de69e commit e499b93

2 files changed

Lines changed: 53 additions & 26 deletions

File tree

prototypes/greenhouse.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ data:extend {{
99
icon = F .. "/graphics/technology/factory-upgrade-greenhouse.png",
1010
icon_size = 256,
1111
prerequisites = {"factory-architecture-t3", "factory-interior-upgrade-lights"},
12-
effects = {},
12+
effects = {{
13+
type = "nothing",
14+
effect_description = ""
15+
}},
1316
unit = {
1417
count = 2000,
1518
ingredients = {{"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"production-science-pack", 1}},

prototypes/technology.lua

Lines changed: 49 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ if (mods["space-exploration"] or mods["space-age"]) and settings.startup["Factor
8686
unit = {
8787
count = 3000,
8888
ingredients = {
89-
{"automation-science-pack", 1},
90-
{"logistic-science-pack", 1},
91-
{"chemical-science-pack", 1},
92-
{"se-rocket-science-pack", 1},
93-
{"space-science-pack", 1},
94-
{"production-science-pack", 1},
95-
{"utility-science-pack", 1},
89+
{"automation-science-pack", 1},
90+
{"logistic-science-pack", 1},
91+
{"chemical-science-pack", 1},
92+
{"se-rocket-science-pack", 1},
93+
{"space-science-pack", 1},
94+
{"production-science-pack", 1},
95+
{"utility-science-pack", 1},
9696
{"se-astronomic-science-pack-1", 1},
9797
},
9898
time = 60
@@ -104,17 +104,17 @@ if (mods["space-exploration"] or mods["space-age"]) and settings.startup["Factor
104104
unit = {
105105
count = 5000,
106106
ingredients = {
107-
{"automation-science-pack", 1},
108-
{"logistic-science-pack", 1},
109-
{"chemical-science-pack", 1},
110-
{"production-science-pack", 1},
111-
{"utility-science-pack", 1},
112-
{"space-science-pack", 1},
113-
{"metallurgic-science-pack", 1},
107+
{"automation-science-pack", 1},
108+
{"logistic-science-pack", 1},
109+
{"chemical-science-pack", 1},
110+
{"production-science-pack", 1},
111+
{"utility-science-pack", 1},
112+
{"space-science-pack", 1},
113+
{"metallurgic-science-pack", 1},
114114
{"electromagnetic-science-pack", 1},
115-
{"agricultural-science-pack", 1},
116-
{"cryogenic-science-pack", 1},
117-
{"promethium-science-pack", 1},
115+
{"agricultural-science-pack", 1},
116+
{"cryogenic-science-pack", 1},
117+
{"promethium-science-pack", 1},
118118
},
119119
time = 120
120120
}
@@ -160,7 +160,10 @@ data:extend {{
160160
icon = F .. "/graphics/technology/factory-connection-type-fluid.png",
161161
icon_size = 256,
162162
prerequisites = {"factory-architecture-t1"}, -- 'fluid-handling'
163-
effects = {},
163+
effects = {{
164+
type = "nothing",
165+
effect_description = ""
166+
}},
164167
unit = {
165168
count = 100,
166169
ingredients = {{"automation-science-pack", 1}},
@@ -174,7 +177,10 @@ data:extend {{
174177
icon = F .. "/graphics/technology/factory-connection-type-chest.png",
175178
icon_size = 256,
176179
prerequisites = {"factory-architecture-t2", "logistics-2"},
177-
effects = {},
180+
effects = {{
181+
type = "nothing",
182+
effect_description = ""
183+
}},
178184
unit = {
179185
count = 200,
180186
ingredients = {{"automation-science-pack", 1}, {"logistic-science-pack", 1}},
@@ -202,7 +208,10 @@ data:extend {{
202208
icon = F .. "/graphics/technology/factory-connection-type-heat.png",
203209
icon_size = 256,
204210
prerequisites = {"factory-architecture-t2"},
205-
effects = {},
211+
effects = {{
212+
type = "nothing",
213+
effect_description = ""
214+
}},
206215
unit = {
207216
count = 600,
208217
ingredients = {{"automation-science-pack", 1}, {"logistic-science-pack", 1}},
@@ -219,7 +228,10 @@ data:extend {{
219228
icon = F .. "/graphics/technology/factory-interior-upgrade-lights.png",
220229
icon_size = 256,
221230
prerequisites = {"factory-architecture-t1", "lamp"},
222-
effects = {},
231+
effects = {{
232+
type = "nothing",
233+
effect_description = ""
234+
}},
223235
unit = {
224236
count = 50,
225237
ingredients = {{"automation-science-pack", 1}},
@@ -233,7 +245,10 @@ data:extend {{
233245
icon = F .. "/graphics/technology/factory-interior-upgrade-display.png",
234246
icon_size = 256,
235247
prerequisites = {"factory-architecture-t2", "lamp"},
236-
effects = {},
248+
effects = {{
249+
type = "nothing",
250+
effect_description = ""
251+
}},
237252
unit = {
238253
count = 100,
239254
ingredients = {{"automation-science-pack", 1}, {"logistic-science-pack", 1}},
@@ -247,7 +262,10 @@ data:extend {{
247262
icon = F .. "/graphics/technology/factory-interior-upgrade-roboport.png",
248263
icon_size = 256,
249264
prerequisites = {"factory-architecture-t2", "construction-robotics"},
250-
effects = {},
265+
effects = {{
266+
type = "nothing",
267+
effect_description = ""
268+
}},
251269
unit = {
252270
count = 1000,
253271
ingredients = {{"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}},
@@ -262,7 +280,10 @@ data:extend {{
262280
icon = F .. "/graphics/technology/factory-recursion-1.png",
263281
icon_size = 256,
264282
prerequisites = {"factory-architecture-t2", "logistics-2"},
265-
effects = {},
283+
effects = {{
284+
type = "nothing",
285+
effect_description = ""
286+
}},
266287
unit = {
267288
count = 2000,
268289
ingredients = {{"automation-science-pack", 1}, {"logistic-science-pack", 1}},
@@ -276,7 +297,10 @@ data:extend {{
276297
icon = F .. "/graphics/technology/factory-recursion-2.png",
277298
icon_size = 256,
278299
prerequisites = {"factory-recursion-t1", "factory-architecture-t3"},
279-
effects = {},
300+
effects = {{
301+
type = "nothing",
302+
effect_description = ""
303+
}},
280304
unit = {
281305
count = 5000,
282306
ingredients = {{"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"production-science-pack", 1}},

0 commit comments

Comments
 (0)