-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-updates.lua
More file actions
47 lines (40 loc) · 2.47 KB
/
Copy pathdata-updates.lua
File metadata and controls
47 lines (40 loc) · 2.47 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
local nauvis = data.raw["planet"]["nauvis"]
if nauvis then
-- Nauvis ore generation
nauvis.map_gen_settings = nauvis.map_gen_settings or {}
nauvis.map_gen_settings.autoplace_controls = nauvis.map_gen_settings.autoplace_controls or {}
nauvis.map_gen_settings.autoplace_controls["nickel-ore"] = {}
nauvis.map_gen_settings.autoplace_controls["titanium-ore"] = {}
nauvis.map_gen_settings.autoplace_controls["aluminium-ore"] = {}
nauvis.map_gen_settings.autoplace_controls["quartz-ore"] = {}
nauvis.map_gen_settings.autoplace_controls["phosphorus-ore"] = {}
nauvis.map_gen_settings.autoplace_controls["magnesium-ore"] = {}
nauvis.map_gen_settings.autoplace_settings = nauvis.map_gen_settings.autoplace_settings or {}
nauvis.map_gen_settings.autoplace_settings.entity = nauvis.map_gen_settings.autoplace_settings.entity or {}
nauvis.map_gen_settings.autoplace_settings.entity.settings = nauvis.map_gen_settings.autoplace_settings.entity.settings or {}
nauvis.map_gen_settings.autoplace_settings.entity.settings["nickel-ore"] = {}
nauvis.map_gen_settings.autoplace_settings.entity.settings["titanium-ore"] = {}
nauvis.map_gen_settings.autoplace_settings.entity.settings["aluminium-ore"] = {}
nauvis.map_gen_settings.autoplace_settings.entity.settings["quartz-ore"] = {}
nauvis.map_gen_settings.autoplace_settings.entity.settings["phosphorus-ore"] = {}
nauvis.map_gen_settings.autoplace_settings.entity.settings["magnesium-ore"] = {}
end
table.insert(data.raw["assembling-machine"]["assembling-machine-2"].crafting_categories, "autoclaving-or-assembling")
table.insert(data.raw["assembling-machine"]["assembling-machine-3"].crafting_categories, "autoclaving-or-assembling")
table.insert(data.raw["assembling-machine"]["chemical-plant"].crafting_categories, "autoclaving-or-chemistry")
table.insert(data.raw["assembling-machine"]["assembling-machine-2"].crafting_categories, "3d-printing-or-assembling")
table.insert(data.raw["assembling-machine"]["assembling-machine-3"].crafting_categories, "3d-printing-or-assembling")
data.raw["fluid"]["fluorine"].icon = "__aethers-planets__/graphics/icons/fluids/fluorine.png"
data.raw["fluid"]["ammonia"].icon = "__aethers-planets__/graphics/icons/fluids/ammonia.png"
data.raw["roboport"]["roboport"].surface_conditions = {
{
property = "gravity",
min = 0.1
}
}
data.raw["recipe"]["acid-neutralisation"].surface_conditions = {
{
property = "pressure",
min = 4000
},
}