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
|
package at.hannibal2.skyhanni.config.features.event;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class GreatSpookConfig {
@Expose
@ConfigOption(name = "Primal Fear Timer", desc = "Show cooldown timer for next Primal Fear.")
@ConfigEditorBoolean
@FeatureToggle
public boolean primalFearTimer = false;
@Expose
@ConfigOption(name = "Primal Fear Notify", desc = "Play a notification sound when the next Primal Fear can spawn.")
@ConfigEditorBoolean
@FeatureToggle
public boolean primalFearNotification = false;
@Expose
@ConfigLink(owner = GreatSpookConfig.class, field = "primalFearTimer")
public Position positionTimer = new Position(20, 20, false, true);
@Expose
@ConfigOption(name = "Fear Stat Display", desc = "Show your current Fear stat value.")
@ConfigEditorBoolean
@FeatureToggle
public boolean fearStatDisplay = false;
@Expose
@ConfigLink(owner = GreatSpookConfig.class, field = "fearStatDisplay")
public Position positionFear = new Position(30, 30, false, true);
@Expose
@ConfigOption(name = "IRL Time Left", desc = "Show the IRL time left before The Great Spook ends.")
@ConfigEditorBoolean
@FeatureToggle
public boolean greatSpookTimeLeft = false;
@Expose
@ConfigLink(owner = GreatSpookConfig.class, field = "greatSpookTimeLeft")
public Position positionTimeLeft = new Position(40, 40, false, true);
}
|