forked from jupitersh/dst-mod-quick-pick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodinfo.lua
64 lines (58 loc) · 1.84 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
name = "Quick Pick"
description = "It makes almost everything pick quickly."
author = "辣椒小皇纸"
version = "1.4.0"
forumthread = ""
api_version = 10
all_clients_require_mod = false
client_only_mod = false
dst_compatible = true
icon_atlas = "modicon.xml"
icon = "modicon.tex"
server_filter_tags = {"Quick Pick"}
----------------------
-- General settings --
----------------------
configuration_options =
{
{
name = "quick_pick_cactus",
label = "Quick Pick Cactus or Lichen",
hover = "Quick picking cactus or lichen",
options = {
{description = "Yes", data = true, hover = ""},
{description = "No", data = false, hover = ""},
},
default = true,
},
{
name = "quick_pick_plant_normal_ground",
label = "Quick Pick Wormwood's plant",
hover = "Quick picking the plants that Wormwood planted on the groud",
options = {
{description = "Yes", data = true, hover = ""},
{description = "No", data = false, hover = ""},
},
default = true,
},
{
name = "quick_harvest",
label = "Quick Harvest",
hover = "Quick picking from cookpots, dryers and farms",
options = {
{description = "Yes", data = true, hover = ""},
{description = "No", data = false, hover = ""},
},
default = true,
},
{
name = "quick_cook_on_fire",
label = "Quick Cook on Fire",
hover = "Quick cooking foods on firepit.",
options = {
{description = "Yes", data = true, hover = ""},
{description = "No", data = false, hover = ""},
},
default = true,
},
}