-
Notifications
You must be signed in to change notification settings - Fork 0
/
modinfo.lua
50 lines (42 loc) · 1.5 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 = "DLC Theme Switcher"
description = "Switch between DLC themes on the main screen. At the moment you can choose the music and the background, or make it random!"
author = "fisikantix"
version = "0.1"
api_version = 6
forumthread ="https://forums.kleientertainment.com/forums/topic/143036-new-mod-dlc-theme-switcher/"
-- Compatible only with SW. Must have the sound and theme files to change them!
dont_starve_compatible = false
reign_of_giants_compatible = false
shipwrecked_compatible = true
dst_compatible = false
hamlet_compatible = true
restart_required = false
configuration_options = {
{
name = "mainScreenMusic",
label = "Music",
options =
{
{description = "Original Don't Starve & Reign Of Giants", data = "rog"},
{description = "Shipwrecked", data = "shi"},
{description = "Hamlet", data = "ham"},
{description = "Random", data = "rand"}
},
default = "rog",
},
{
name = "mainScreenBgColor",
label = "Background color",
options =
{
{description = "Don't Starve", data = "RED"},
{description = "Reign Of Giants", data = "PURPLE"},
{description = "Shipwrecked", data = "TEAL"},
{description = "Hamlet", data = "GREEN"},
{description = "Bonus1", data = "YELLOW"},
{description = "Bonus2", data = "MUSTARD"},
{description = "Random", data = "rand"}
},
default = "RED",
}
}