blob: 9c24e810fc4c93a2ef4f4859d2b15875849d8872 (
plain)
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
|
package at.hannibal2.skyhanni.config.features.rift;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.features.rift.area.RiftAreasConfig;
import at.hannibal2.skyhanni.config.features.rift.motes.MotesConfig;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.Accordion;
import io.github.notenoughupdates.moulconfig.annotations.Category;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class RiftConfig {
@ConfigOption(name = "Rift Timer", desc = "")
@Accordion
@Expose
public RiftTimerConfig timer = new RiftTimerConfig();
@ConfigOption(name = "Crux Talisman Progress", desc = "")
@Accordion
@Expose
public CruxTalismanDisplayConfig cruxTalisman = new CruxTalismanDisplayConfig();
@ConfigOption(name = "Enigma Soul Waypoints", desc = "")
@Accordion
@Expose
public EnigmaSoulConfig enigmaSoulWaypoints = new EnigmaSoulConfig();
@Category(name = "Rift Areas", desc = "Rift Area Settings")
@Expose
public RiftAreasConfig area = new RiftAreasConfig();
@Expose
@Category(name = "Motes", desc = "")
public MotesConfig motes = new MotesConfig();
@Expose
@ConfigOption(name = "Motes Orbs", desc = "")
@Accordion
public MotesOrbsConfig motesOrbs = new MotesOrbsConfig();
@Expose
@ConfigOption(name = "Punchcard Artifact", desc = "")
@Accordion
public PunchcardConfig punchcard = new PunchcardConfig();
@Expose
@ConfigOption(name = "Highlight Guide", desc = "Highlight things to do in the Rift Guide.")
@ConfigEditorBoolean
@FeatureToggle
public boolean highlightGuide = true;
@Expose
@ConfigOption(name = "Horsezooka Hider", desc = "Hide horses while holding the Horsezooka in the hand.")
@ConfigEditorBoolean
@FeatureToggle
public boolean horsezookaHider = false;
}
|