forked from zombieJ/dst_additional_item_package
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodinfo.lua
More file actions
158 lines (152 loc) · 3.56 KB
/
modinfo.lua
File metadata and controls
158 lines (152 loc) · 3.56 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
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
local descList =
{
"(DEV MODE)",
"Provide additional items for game. Enjoy your new package! (You can close part of package in options)",
"提供额外的物品合成,享受更加丰富的游戏内容吧!(您可以在选项中选择关闭不需要的内容)",
"\nView Steam workshop for more info",
"游览Steam创意工坊查看更多信息",
"\n新浪微博:@二货爱吃白萝卜",
}
local function joinArray(arr, spliter)
local strs = ""
for i = 1, #arr do
if i ~= 1 then
strs = strs..spliter
end
strs = strs..arr[i]
end
return strs
end
name = "Additional Item Package DEV"
description = joinArray(descList, "\n")
author = "ZombieJ"
version = "0.4.0"
forumthread = "http://steamcommunity.com/sharedfiles/filedetails/?id=1085586145"
icon_atlas = "modicon.xml"
icon = "modicon.tex"
dst_compatible = true
client_only_mod = false
all_clients_require_mod = true
api_version = 10
configuration_options =
{
{
name = "additional_weapon",
label = "Weapon Recipes",
options =
{
{description = "Open", data = "open"},
{description = "Close", data = "close"},
},
default = "open",
},
{
name = "additional_building",
label = "Building Recipes",
options =
{
{description = "Open", data = "open"},
{description = "Close", data = "close"},
},
default = "open",
},
{
name = "additional_survival",
label = "Survival Recipes",
options =
{
{description = "Open", data = "open"},
{description = "Close", data = "close"},
},
default = "open",
},
{
name = "additional_food",
label = "Food Recipes",
options =
{
{description = "Open", data = "open"},
{description = "Close", data = "close"},
},
default = "open",
},
{
name = "additional_dress",
label = "Dress Recipes",
options =
{
{description = "Open", data = "open"},
{description = "Close", data = "close"},
},
default = "open",
},
{
name = "additional_experiment",
label = "Experiment Recipes",
hover = "Experience new released items",
options =
{
{description = "Open", data = "open"},
{description = "Close", data = "close"},
},
default = "open",
},
{
name = "weapon_uses",
label = "Weapon Usage times",
options =
{
{description = "Less", data = "less"},
{description = "Default", data = "normal"},
{description = "Much", data = "much"},
},
default = "normal",
},
{
name = "weapon_damage",
label = "Weapon Damage",
options =
{
{description = "Less", data = "less"},
{description = "Default", data = "normal"},
{description = "Large", data = "large"},
},
default = "normal",
},
{
name = "survival_effect",
label = "Survival Item Effect",
options =
{
{description = "Less", data = "less"},
{description = "Default", data = "normal"},
{description = "Large", data = "large"},
},
default = "normal",
},
{
name = "food_effect",
label = "Food Recipes Effect",
options =
{
{description = "Less", data = "less"},
{description = "Default", data = "normal"},
{description = "Large", data = "large"},
},
default = "normal",
},
{
name = "language",
label = "Language",
options =
{
{description = "中文", data = "chinese"},
{description = "English", data = "english"},
{description = "Spanish", data = "spanish"},
{description = "Portuguese", data = "portuguese"},
{description = "Russian", data = "russian"},
{description = "Korean", data = "korean"},
},
default = "english",
},
}