generated from fgardt/factorio-mod-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
data.lua
43 lines (41 loc) · 877 Bytes
/
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
require "prototypes.factory"
require "prototypes.component"
require "prototypes.utility"
require "prototypes.recipe"
require "prototypes.technology"
require "prototypes.tile"
require "prototypes.borehole-pump"
require "prototypes.roboport"
require "prototypes.space-age-rebalance"
data:extend {
{
type = "item-subgroup",
name = "factorissimo2",
group = "logistics",
order = "e-e"
},
{
type = "custom-input",
name = "factory-rotate",
key_sequence = "R",
},
{
type = "custom-input",
name = "factory-increase",
key_sequence = "SHIFT + R",
},
{
type = "custom-input",
name = "factory-decrease",
key_sequence = "CONTROL + R",
},
{
type = "custom-input",
name = "factory-open-outside-surface-to-remote-view",
key_sequence = "",
linked_game_control = "build-ghost"
},
}
if mods["power-grid-comb"] then
require "compat.powergridcomb"
end