blob: 6002d55a385062f8d11d4b14eb863ad8432a8be9 (
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
|
package at.hannibal2.skyhanni.config.features.combat;
import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.Accordion;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorSlider;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class QuiverConfig {
@Expose
@ConfigOption(name = "Quiver Display", desc = "")
@Accordion
public QuiverDisplayConfig quiverDisplay = new QuiverDisplayConfig();
@Expose
@ConfigOption(
name = "Low Quiver Alert",
desc = "Notifies you when your quiver reaches a set amount of arrows."
)
@ConfigEditorBoolean
@FeatureToggle
public boolean lowQuiverNotification = true;
@Expose
@ConfigOption(
name = "Reminder After Run",
desc = "Reminds you to buy arrows after a Dungeons/Kuudra run if you're low."
)
@ConfigEditorBoolean
@FeatureToggle
public boolean reminderAfterRun = true;
@Expose
@ConfigOption(name = "Low Quiver Amount", desc = "Amount at which to notify you.")
@ConfigEditorSlider(minValue = 50, maxValue = 500, minStep = 50)
public int lowQuiverAmount = 100;
}
|