-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdata.lua
More file actions
30 lines (29 loc) · 855 Bytes
/
data.lua
File metadata and controls
30 lines (29 loc) · 855 Bytes
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
--require("prototype/steam-drill")
--require("prototype/void-lab")
data:extend({
-- Key sequence for returning to starting planet
{
type = "custom-input",
name = "return-to-starting-planet",
key_sequence = "CONTROL + SHIFT + R",
localised_name = "Return Home"
},
-- Key sequence for randomizer info panel
{
type = "custom-input",
name = "randomizer-panel",
key_sequence = "CONTROL + P",
localised_name = "Open Randomizer Panel"
},
-- Special item for images
{
type = "item",
name = "propertyrandomizer-gear",
localised_name = "exfret's randomizer",
localised_description = "FUN!",
stack_size = 23,
icon = "__propertyrandomizer__/graphics/gear-icon.png",
icon_size = 127,
hidden = true,
}
})