-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.lua
61 lines (59 loc) · 1.17 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
require "lib"
require("prototypes.technology")
require("prototypes.style")
require("prototypes.item")
require("prototypes.recipe")
require("prototypes.entities")
data:extend(
{
{
type = "sprite",
name = "train_manager",
filename = "__train-pubsub__/graphics/icons/train_manager.png",
width = 32,
height = 32,
},
{
type = "sprite",
name = "priority",
filename = "__train-pubsub__/graphics/icons/gui-arrow-small.png",
width = 42,
height = 55,
},
{
type = "sprite",
name = "sub_train_stop",
filename = "__train-pubsub__/graphics/icons/train-stop-sub.png",
width = 32,
height = 32,
},
{
type = "sprite",
name = "publisher",
filename = "__train-pubsub__/graphics/icons/small-lamp-pub.png",
width = 32,
height = 32,
},
{
type = "sprite",
name = "trains",
filename = "__base__/graphics/icons/locomotive.png",
width = 64,
height = 64,
},
{
type = "sprite",
name = "key",
filename = "__train-pubsub__/graphics/icons/key.png",
width = 32,
height = 32,
},
{
type = "sprite",
name = "x",
filename = "__train-pubsub__/graphics/icons/x.png",
width = 32,
height = 32,
}
}
)