-
Notifications
You must be signed in to change notification settings - Fork 0
/
modinfo.lua
165 lines (145 loc) · 4.59 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
-- This information tells other players more about the mod
name = "Season Clock"
description = "A clock that indicates the progression through the seasons."
version = "Public preview version"
author = "Soilworker"
forumthread = "nuttinyet"
-- This lets other players know if your mod is out of date, update it to match the current version in the game
api_version = 6
-- Compatibility
dont_starve_compatible = true
reign_of_giants_compatible = true
shipwrecked_compatible = true
-- Can specify a custom icon for this mod!
icon_atlas = "seasonclock_icon.xml"
icon = "seasonclock_icon.tex"
-- Specify the priority (needs to be at 2, or basically higher priority than 2.5, due to the mod priority of the "Always On Status" mod.)
-- This is compatiable with that mod.
priority=2
configuration_options =
{
{
name = "autumn_color",
label = "Autumn Color",
options = {
{description = "Light Yellow", data = "lightyellow"},
{description = "Yellow", data = "yellow"},
{description = "Light Green", data = "lightgreen"},
{description = "Green", data = "green"},
{description = "Light Red", data = "lightred"},
{description = "Red", data = "red"},
{description = "Light Blue", data = "lightblue"},
{description = "Blue", data = "blue"},
},
default = "lightred",
},
{
name = "winter_color",
label = "Winter Color",
options = {
{description = "Light Yellow", data = "lightyellow"},
{description = "Yellow", data = "yellow"},
{description = "Light Green", data = "lightgreen"},
{description = "Green", data = "green"},
{description = "Light Red", data = "lightred"},
{description = "Red", data = "red"},
{description = "Light Blue", data = "lightblue"},
{description = "Blue", data = "blue"},
},
default = "lightblue",
},
{
name = "spring_color",
label = "Spring Color",
options = {
{description = "Light Yellow", data = "lightyellow"},
{description = "Yellow", data = "yellow"},
{description = "Light Green", data = "lightgreen"},
{description = "Green", data = "green"},
{description = "Light Red", data = "lightred"},
{description = "Red", data = "red"},
{description = "Light Blue", data = "lightblue"},
{description = "Blue", data = "blue"},
},
default = "green",
},
{
name = "summer_color",
label = "Summer Color",
options = {
{description = "Light Yellow", data = "lightyellow"},
{description = "Yellow", data = "yellow"},
{description = "Light Green", data = "lightgreen"},
{description = "Green", data = "green"},
{description = "Light Red", data = "lightred"},
{description = "Red", data = "red"},
{description = "Light Blue", data = "lightblue"},
{description = "Blue", data = "blue"},
},
default = "yellow",
},
{
name = "hovertextoption",
label = "Hover Text",
options = {
{description = "Detailed", data = "detailed"},
{description = "Brief", data = "brief"},
{description = "Off", data = "off"},
},
default = "detailed",
},
{
name = "hoverfontsize",
label = "Hover Font Size",
options = {
{description = "Very Small", data = "verysmall"},
{description = "Small", data = "small"},
{description = "Default", data = "default"},
{description = "Large", data = "large"},
{description = "Very Large", data = "verylarge"},
},
default = "default",
},
{
name = "seasonfontsize",
label = "Season Font Size",
options = {
{description = "Very Small", data = "verysmall"},
{description = "Small", data = "small"},
{description = "Default", data = "default"},
{description = "Large", data = "large"},
{description = "Very Large", data = "verylarge"},
},
default = "default",
},
{
name = "showincave",
label = "Visible in Caves",
options = {
{description = "True", data = true},
{description = "False", data = false},
},
default = true,
},
{
name = "texttodisplay",
label = "Default Text to Display",
options = {
{description = "Current Season", data = "currentseason"},
{description = "Season Progress", data = "seasonprogress"},
{description = "Off", data = "off"},
},
default = "currentseason",
},
{
name = "clockposition",
label = "Clock Position",
options = {
{description = "Above Day Clock", data = "aboveday"},
{description = "Below Day Clock", data = "belowday"},
{description = "Left of Day Clock", data = "leftofday"},
{description = "Right of Day Clock", data = "rightofday"},
},
default = "rightofday",
},
}