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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
package at.hannibal2.skyhanni.config.features;
import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.Accordion;
import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
import io.github.moulberry.moulconfig.annotations.ConfigEditorColour;
import io.github.moulberry.moulconfig.annotations.ConfigOption;
public class RiftConfig {
@ConfigOption(name = "Rift Timer", desc = "")
@Accordion
@Expose
public RiftTimerConfig timer = new RiftTimerConfig();
public static class RiftTimerConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Show the remaining rift time, max time, percentage, and extra time changes.")
@ConfigEditorBoolean
public boolean enabled = true;
@Expose
@ConfigOption(name = "Max time", desc = "Show max time.")
@ConfigEditorBoolean
public boolean maxTime = true;
@Expose
@ConfigOption(name = "Percentage", desc = "Show percentage.")
@ConfigEditorBoolean
public boolean percentage = true;
@Expose
public Position timerPosition = new Position(10, 10, false, true);
}
@ConfigOption(name = "Crux Warnings", desc = "")
@Accordion
@Expose
public CruxWarnings crux = new CruxWarnings();
public static class CruxWarnings {
@Expose
@ConfigOption(name = "Shy Warning", desc = "Shows a warning when a shy is going to steal your time. " +
"Useful if you play without volume.")
@ConfigEditorBoolean
public boolean shyWarning = true;
}
@ConfigOption(name = "Larvas", desc = "")
@Accordion
@Expose
public LarvasConfig larvas = new LarvasConfig();
public static class LarvasConfig {
@Expose
@ConfigOption(name = "Highlight", desc = "Highlight §cLarvas on trees §7while holding a §eLarva Hook §7in the hand.")
@ConfigEditorBoolean
public boolean highlight = true;
@Expose
@ConfigOption(name = "Color", desc = "Color of the Larvas.")
@ConfigEditorColour
public String highlightColor = "0:120:13:49:255";
}
@ConfigOption(name = "Odonatas", desc = "")
@Accordion
@Expose
public OdonataConfig odonata = new OdonataConfig();
public static class OdonataConfig {
@Expose
@ConfigOption(name = "Highlight", desc = "Highlight the small §cOdonatas §7flying around the trees while holding a §eEmpty Odonata Bottle §7in the hand.")
@ConfigEditorBoolean
public boolean highlight = true;
@Expose
@ConfigOption(name = "Color", desc = "Color of the Odonatas.")
@ConfigEditorColour
public String highlightColor = "0:120:13:49:255";
}
@Expose
@ConfigOption(name = "Highlight Guide", desc = "Highlight things to do in the Rift Guide.")
@ConfigEditorBoolean
public boolean highlightGuide = true;
@Expose
@ConfigOption(name = "Agaricus Cap", desc = "Counts down the time until §eAgaricus Cap (Mushroom) §7changes color from brown to red and is breakable.")
@ConfigEditorBoolean
public boolean agaricusCap = true;
}
|