-
Notifications
You must be signed in to change notification settings - Fork 0
/
modinfo.lua
103 lines (97 loc) · 2.39 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
-- Description
name = "practice-boss-fights"
description = "Menu with options for practicing boss fights."
author = ""
version = "1.0"
forumthread = ""
--icon_atlas = "modicon.xml"
--icon = "modicon.tex"
-- Compatibility
dst_compatible = true
dont_starve_compatible = false
reign_of_giants_compatible = false
shipwrecked_compatible = false
hamlet_compatible = false
api_version = 10
all_clients_require_mod = false
-- Config
server_filter_tags = {name, author}
configuration_options =
{
-- Starting Configuration
{
name = "",
label = "Starting Configuration",
hover = "",
default = 0,
options = {
{description = "", data = 0},
},
},
-- Ancient Fuelweaver
{
name = "start_fw",
label = "Ancient Fuelweaver",
hover = "Set whether you start with: shadow atrium, atrium key, 8 fossil fragments.",
options = {
{description = "False", data = 0, hover = "Disabled"},
{description = "True", data = 1, hover = "Enabled (default)"},
},
default = 1,
},
-- Crab King
{
name = "start_ck",
label = "Crab King",
hover = "Set whether you start with: Pearl's Pearl.",
options = {
{description = "False", data = 0, hover = "Disabled"},
{description = "True", data = 1, hover = "Enabled (default)"},
},
default = 1,
},
-- Eye of Terror
{
name = "start_eot",
label = "Eye of Terror",
hover = "Set whether you start with: Terrarium.",
options = {
{description = "False", data = 0, hover = "Disabled"},
{description = "True", data = 1, hover = "Enabled (default)"},
},
default = 1,
},
-- Klaus
{
name = "start_kl",
label = "Klaus",
hover = "Set whether you start with: deer antler.",
options = {
{description = "False", data = 0, hover = "Disabled"},
{description = "True", data = 1, hover = "Enabled (default)"},
},
default = 1,
},
-- Misery Toadstool
{
name = "start_mt",
label = "Misery Toadstool",
hover = "Set whether you start with: poisoned canary.",
options = {
{description = "False", data = 0, hover = "Disabled"},
{description = "True", data = 1, hover = "Enabled (default)"},
},
default = 1,
},
-- The Twins
{
name = "start_tt",
label = "The Twins",
hover = "Set whether you start with: Terrarium, nightmare fuel.",
options = {
{description = "False", data = 0, hover = "Disabled"},
{description = "True", data = 1, hover = "Enabled (default)"},
},
default = 1,
}
}