-
Notifications
You must be signed in to change notification settings - Fork 11
/
modinfo.lua
63 lines (55 loc) · 1.37 KB
/
modinfo.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
name = "Craft Pot"
author = "IvanX"
version = "0.14.5"
description = "Don't you think cooking and crafting are lot alike?"
priority = 1337
forumthread = ""
api_version = 6
api_version_dst = 10
dont_starve_compatible = true
reign_of_giants_compatible = true
shipwrecked_compatible = true
dst_compatible = true
hamlet_compatible = true
porkland_compatible = true
icon_atlas = "modicon.xml"
icon = "modicon.tex"
--These let clients know if they need to get the mod from the Steam Workshop to join the game
all_clients_require_mod = false
--This determines whether it causes a server to be marked as modded (and shows in the mod list)
client_only_mod = true
--This lets people search for servers with this mod by these tags
server_filter_tags = {}
configuration_options =
{
{
name = "lock_uncooked",
label = "Lock uncooked",
options =
{
{description = "Off", data = false},
{description = "On", data = true},
},
default = false
},
{
name = "invert_controller",
label = "Invert Controller",
options =
{
{description = "Off", data = false},
{description = "On", data = true},
},
default = false
},
{
name = "has_popup",
label = "Ingredient Popup",
options =
{
{description = "Show", data = true},
{description = "Hide", data = false},
},
default = true
}
}