-
Notifications
You must be signed in to change notification settings - Fork 2
/
modinfo.lua
50 lines (48 loc) · 1.33 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
name = ' Craft From Chest [ROG/SW/Hamlet]'
description = 'When crafting items, ingredients are automatically obtained from nearby containers. No manually searching for necessary items anymore! '
author = 'fredwangwang, Vlad Undying'
version = '1.2.0'
forumthread = ''
api_version = 6
priority = 1
dont_starve_compatible = true
reign_of_giants_compatible = true
shipwrecked_compatible = true
hamlet_compatible = true
icon_atlas = "modicon.xml"
icon = "modicon.tex"
-- dst_compatible = true
-- all_clients_require_mod = false
-- client_only_mod = true
-- server_filter_tags = {}
-- Configurations
configuration_options = {
{
name = "range",
label = "Nearby Range",
options = {
{ description = "10", data = 10 },
{ description = "30", data = 30 },
{ description = "50", data = 50 },
},
default = 10
},
{
name = "is_inv_first",
label = "Take from: ",
options = {
{ description = "Inv first", data = true },
{ description = "Chest first", data = false },
},
default = true
},
{
name = "debug",
label = "Debug msg",
options = {
{ description = "Enable", data = true },
{ description = "Disable", data = false },
},
default = false
},
}