-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodinfo.lua
51 lines (42 loc) · 1.54 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
-- This information tells other players more about the mod
name = "The Maid"
description = "Joy, The Maid. She is a character from The Maid, Thai horror movie on Netflix, directed by Lee Thongkham. If you like this mod, please support the movie by watching it on Netflix."
author = "Satana Charuwichitratana"
version = "1.0.5" -- This is the version of the template. Change it to your own number.
-- This is the URL name of the mod's thread on the forum; the part after the ? and before the first & in the url
forumthread = ""
-- This lets other players know if your mod is out of date, update it to match the current version in the game
api_version = 10
-- In case DS compatible
--api_version = 6
--dst_api_version = 10
-- Compatible with Don't Starve Together
dst_compatible = true
-- Not compatible with Don't Starve
dont_starve_compatible = false
reign_of_giants_compatible = false
shipwrecked_compatible = false
-- Character mods are required by all clients
all_clients_require_mod = true
icon_atlas = "modicon.xml"
icon = "modicon.tex"
-- The mod's tags displayed on the server list
server_filter_tags = {
"character",
}
configuration_options =
{
{
name = "revengekey",
label = "Seek Revenge Key",
hover = "Joy is holding grudges. Press this key to seek revenge. Press again to forgive.",
options =
{
{description="C", data = 99},
{description="R", data = 114},
{description="X", data = 120},
{description="Z", data = 122},
},
default = 122,
},
}