-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodinfo.lua
More file actions
97 lines (92 loc) · 2.23 KB
/
modinfo.lua
File metadata and controls
97 lines (92 loc) · 2.23 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name = "Extender"
description = "More recipes, more drop, some utility, MORE FUN!"
author = "pajadam"
version = "0.3"
forumthread = ""
api_version = 6
dont_starve_compatible = true
reign_of_giants_compatible = true
shipwrecked_compatible = true
icon_atlas = "modicon.xml"
icon = "modicon.tex"
priority = 0
configuration_options =
{
{
name = "paj_fling",
label = "Friendly Flingomatics:",
options =
{
{description = "Enabled", data = 0},
{description = "Disabled", data = 1},
},
default = 0,
},
{
name = "paj_craft",
label = "More crafting recipes:",
options =
{
{description = "Enabled", data = 0},
{description = "Disabled", data = 1},
},
default = 0,
},
{
name = "paj_bdrop",
label = "Loot drop tweaks:",
options =
{
{description = "Enabled", data = 0},
{description = "Disabled", data = 1},
},
default = 0,
},
{
name = "paj_diff",
label = "Loot Difficulty:",
options =
{
{description = "Hard", data = 2},
{description = "Medium", data = 1},
{description = "Easy", data = 0},
},
default = 1,
},
{
name = "paj_bgc",
label = "Background Color:",
options =
{
{description = "Poison Green", data = {50/255,235/255,100/255}},
{description = "Default Red", data = {255/255, 89/255, 46/255}},
{description = "RoG Purple", data = {202/255, 48/255, 209/255}},
{description = "Together Gray", data = {255/255,255/255,255/255}},
{description = "Orphaned Yellow", data = {255/255, 196/255, 45/255}},
{description = "Sky Blue", data = {0/255,235/255,245/255}},
{description = "Coffee Brown", data = {140/255,95/255,15/255}},
{description = "Creepy Blue", data = {65/255,25/255,175/255}},
},
default = {50/255,235/255,100/255},
},
{
name = "paj_nomodswarning",
label = "Mods warning:",
options =
{
{description = "Disabled", data = 0},
{description = "Enabled", data = 1},
},
default = 0,
},
{
name = "paj_noworkshopsync",
label = "Auto Workshop Sync:",
options =
{
{description = "Disabled", data = 0},
{description = "Enabled", data = 1},
},
default = 0,
}
}