-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodinfo.lua
More file actions
84 lines (77 loc) · 2.51 KB
/
modinfo.lua
File metadata and controls
84 lines (77 loc) · 2.51 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
local function en_zh(en, zh)
return (locale == "zh" or locale == "zhr" or locale == "zht") and zh or en
end
name = en_zh("Terrible Slotmachine", "恐怖抽奖机")
description = en_zh("Random Terrible Slotmachine!\nIt needs to be used with Island Adventures and Gem Core.", "恐怖抽奖机!\n需要与岛屿冒险一起开启")
author = "亚丹,每年睡8760小时"
version = "0.1.5.9.1"
forumthread = "https://steamcommunity.com/sharedfiles/filedetails/?id=2866709098"
api_version = 10
api_version_dst = 10
priority = -22
dst_compatible = true
dont_starve_compatible = false
all_clients_require_mod = true
client_only_mod = false
reign_of_giants_compatible = false
icon_atlas = "modicon.xml"
icon = "modicon.tex"
configuration_options = {
{
name = "MOREDUBLOON",
label = "更多的金币!",
hover = "更多的金币!",
options =
{{description = "默认",hover = "默认数量,适合多人",data = 1
},
{description = "较多",hover = "较多",data = 2
},
{description = "很多",hover = "很多",data = 3
},
{description = "非常多!",hover = "???单人玩家???",data = 4
},},
default = 1
},
{
name = "recipespostinit",
label = "部分制作材料修改",
hover = "大部分都是角色物品",
options =
{{description = "开启",hover = "开启",data = true
},
{description = "关闭",hover = "关闭",data = false
},}
,
default = true
},
{
name = "ANCIENT_HULKHEALTH",
label = "远古巨人的血量",
hover = "远古巨人的血量",
options = {
{description = "更多的血量",hover = "14000血",data = 14000
},
{description = "默认的血量",hover = "9000血",data = 9000
},
{description = "较少的血量",hover = "6000血",data = 6000
},
{description = "很少的血量",hover = "???单人玩家???",data = 4500
}},
default = 9000
},
{
name = "DRAGONFLY_HEALTH",
label = "龙蝇的血量",
hover = "龙蝇的血量",
options = {
{description = "更多的血量",hover = "37500血",data = 37500
},
{description = "默认的血量",hover = "27500血",data = 27500
},
{description = "较少的血量",hover = "6000血",data = 15000
},
{description = "很少的血量",hover = "???单人玩家???",data = 4000
}},
default = 27500
},
}