-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdata.lua
More file actions
81 lines (72 loc) · 2.49 KB
/
Copy pathdata.lua
File metadata and controls
81 lines (72 loc) · 2.49 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
-- include library
require("__LSlib__/LSlib")
require("src/debug")
if Debug.enabled then
LSlib.utils.log.enable() -- enable logging to factorio-current.log
end
-- categories
categoryPath = "prototypes/categories/"
require(categoryPath .. "crafting-categories")
require(categoryPath .. "item-groups")
-- tiles
tilePath = "prototypes/tile/"
--require(tilePath .. "green-water")
-- signals
signalPath = "prototypes/signal/"
require(signalPath .. "color-signal")
-- fluids
fluidPath = "prototypes/fluid/"
require(fluidPath .. "science-fluids")
require(fluidPath .. "science-fluids-mixing")
-- items
itemPath = "prototypes/item/"
require(itemPath .. "research-labs")
require(itemPath .. "barreling")
require(itemPath .. "science-bottles")
require(itemPath .. "science-packs")
require(itemPath .. "science-packs-mixing")
require(itemPath .. "assembling-machines")
require(itemPath .. "rocket-parts")
require(itemPath .. "rocket-payloads")
require(itemPath .. "rocket")
require(itemPath .. "tree-farm")
-- entities
entityPath = "prototypes/entity/"
require(entityPath .. "research-labs")
require(entityPath .. "assembling-machines")
require(entityPath .. "tree-farm")
-- recipes
recipePath = "prototypes/recipe/"
require(recipePath .. "research-labs")
require(recipePath .. "barreling")
require(recipePath .. "science-bottles")
require(recipePath .. "science-packs")
require(recipePath .. "science-packs-mixing")
require(recipePath .. "science-fluids")
require(recipePath .. "science-fluids-mixing")
require(recipePath .. "assembling-machines")
require(recipePath .. "rocket-parts")
require(recipePath .. "rocket-payloads")
require(recipePath .. "rocket")
require(recipePath .. "tree-farm")
-- technology
technologyPath = "prototypes/technology/"
require(technologyPath .. "basic-automation")
require(technologyPath .. "fluid-handling")
require(technologyPath .. "barreling")
require(technologyPath .. "military")
require(technologyPath .. "flight")
require(technologyPath .. "science-red")
require(technologyPath .. "science-green")
require(technologyPath .. "science-gray")
require(technologyPath .. "science-orange")
require(technologyPath .. "science-cyan")
require(technologyPath .. "science-blue")
require(technologyPath .. "science-purple")
require(technologyPath .. "science-yellow")
require(technologyPath .. "science-pink")
require(technologyPath .. "science-mixing")
require(technologyPath .. "science-rocket")
require(technologyPath .. "science-white")
require(technologyPath .. "science-infused")
require(technologyPath .. "tree-farm")