This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.lua
65 lines (63 loc) · 1.89 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
63
64
65
local modName = "__Simple_Circuit_Trains__"
data:extend({
{
type = "sprite",
name = "simple-stop-icon",
filename = modName .. "/images/smart-stop-icon.png",
priority = "extra-high-no-scale",
size = 32
},
{
type = "sprite",
name = "simple-add-white",
filename = modName .. "/images/add-icon-white.png",
priority = "extra-high-no-scale",
size = 32
},
{
type = "sprite",
name = "simple-change-recipe-white",
filename = modName .. "/images/change-recipe-white.png",
priority = "extra-high-no-scale",
size = 64,
scale = 0.5
},
{
type = "tips-and-tricks-item-category",
name = "luzifers-mods",
order = "s-[luzifers-mods]"
},
{
type = "tips-and-tricks-item",
name = "simple-circuit-trains",
category = "luzifers-mods",
order = "b",
is_title = true,
dependencies = { "train-stops", "circuit-network" },
image = modName .. "/images/guiExplanation.png",
tutorial = "simple-circuit-trains"
},
{
type = "tutorial",
name = "simple-circuit-trains",
scenario = "SCT"
}
})
if mods["Automatic_Coupling_System"] then
data:extend({
{
type = "tips-and-tricks-item",
name = "automatic-coupling-system-and-simple-circuit-trains",
category = "luzifers-mods",
order = "c",
is_title = true,
dependencies = { "simple-circuit-trains", "automatic-coupling-system" },
tutorial = "automatic-coupling-system-and-simple-circuit-trains"
},
{
type = "tutorial",
name = "automatic-coupling-system-and-simple-circuit-trains",
scenario = "ATC_SCT"
}
})
end