forked from Wyrrrd/IndustrialDisplayPlates-Archive
-
Notifications
You must be signed in to change notification settings - Fork 3
/
globals.lua
63 lines (62 loc) · 2.14 KB
/
globals.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
------------------------------------------------------------------------------------------------------------------------------------------------------
-- DEADLOCK'S INDUSTRIAL DISPLAYS
-- Forked from Industrial Revolution, for your signage pleasure
------------------------------------------------------------------------------------------------------------------------------------------------------
-- constants shared by data and control stages
return {
displays = {
["copper-display-small"] = {
ingredients = { { "copper-plate", 1 } },
},
["copper-display-medium"] = {
ingredients = { { "copper-plate", 4 } },
},
["copper-display"] = {
ingredients = { { "copper-plate", 9 } },
},
["iron-display-small"] = {
ingredients = { { "iron-plate", 1 } },
IR_unlock = "ir2-iron-milestone",
},
["iron-display-medium"] = {
ingredients = { { "iron-plate", 4 } },
IR_unlock = "ir2-iron-milestone",
},
["iron-display"] = {
ingredients = { { "iron-plate", 9 } },
IR_unlock = "ir2-iron-milestone",
},
["steel-display-small"] = {
ingredients = { { "steel-plate", 1 } },
unlock = "steel-processing",
IR_unlock = "ir2-steel-milestone",
},
["steel-display-medium"] = {
ingredients = { { "steel-plate", 4 } },
unlock = "steel-processing",
IR_unlock = "ir2-steel-milestone",
},
["steel-display"] = {
ingredients = { { "steel-plate", 9 } },
unlock = "steel-processing",
IR_unlock = "ir2-steel-milestone",
},
},
sizes = {
default = 3,
medium = 2,
small = 1,
},
icon_size = 64,
icon_mipmaps = 4,
icon_path = "__DisplayPlates__/graphics/icons",
sprites_path = "__DisplayPlates__/graphics/entities",
sound_path = "__DisplayPlates__/sound",
base_sound_path = "__base__/sound",
core_sound_path = "__core__/sound",
base_icons_path = "__base__/graphics/icons",
custom_gui = "DID_gui",
mod_name = "DisplayPlates",
pending_translation_value = "",
}
------------------------------------------------------------------------------------------------------------------------------------------------------