-
Notifications
You must be signed in to change notification settings - Fork 5
/
data.lua
62 lines (48 loc) · 2.54 KB
/
data.lua
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
if not aragasmods then aragasmods = {} end
if not aragasmods.functions then aragasmods.functions = {} end
if aragasmods.functions then
aragasmods.functions.OV = require("prototypes.override-functions")
end
require("prototypes.remelting-category")
require("prototypes.buildings.alloy-mixer")
if angelsmods and angelsmods.smelting then
require("prototypes.recipes.angelssmelting.remelting-aluminium")
require("prototypes.recipes.angelssmelting.remelting-chrome")
require("prototypes.recipes.angelssmelting.remelting-cobalt")
require("prototypes.recipes.angelssmelting.remelting-copper")
require("prototypes.recipes.angelssmelting.remelting-glass")
require("prototypes.recipes.angelssmelting.remelting-gold")
require("prototypes.recipes.angelssmelting.remelting-iron")
require("prototypes.recipes.angelssmelting.remelting-lead")
require("prototypes.recipes.angelssmelting.remelting-manganese")
require("prototypes.recipes.angelssmelting.remelting-nickel")
require("prototypes.recipes.angelssmelting.remelting-platinum")
require("prototypes.recipes.angelssmelting.remelting-silicon")
require("prototypes.recipes.angelssmelting.remelting-silver")
require("prototypes.recipes.angelssmelting.remelting-solder")
require("prototypes.recipes.angelssmelting.remelting-steel")
require("prototypes.recipes.angelssmelting.remelting-tin")
require("prototypes.recipes.angelssmelting.remelting-titanium")
require("prototypes.recipes.angelssmelting.remelting-tungsten")
require("prototypes.recipes.angelssmelting.remelting-zinc")
require("prototypes.remelting-override-angelssmelting")
end
require("prototypes.recipes.remelting-entity")
require("prototypes.technology.remelting-technology")
if bobmods and bobmods.plates then
require("prototypes.remelting-category-bobplates")
require("prototypes.recipes.bobplates.remelting-brass")
require("prototypes.recipes.bobplates.remelting-bronze")
require("prototypes.recipes.bobplates.remelting-cobalt-steel")
require("prototypes.recipes.bobplates.remelting-gunmetal")
require("prototypes.recipes.bobplates.remelting-invar")
require("prototypes.recipes.bobplates.remelting-nitinol")
require("prototypes.remelting-override-bobplates")
end
if mods["Clowns-Processing"] then
require("prototypes.recipes.clowns.remelting-magnesium")
require("prototypes.remelting-override-clowns")
end
if mods["ShinyAngelGFX"] and iconset then -- Check if iconset exist as it could be edited in the future
require("prototypes.remelting-override-shinygfx")
end