blob: 7179a2aabdcc50e6753764e668571ad536e8471e (
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
|
package at.hannibal2.skyhanni.config.features.misc;
import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorSlider;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class BitsConfig {
@Expose
@ConfigOption(name = "Bulk Buy Cookie Time", desc = "Corrects the time for cookies if bought in bulk on the buy item.")
@ConfigEditorBoolean
@FeatureToggle
public boolean bulkBuyCookieTime = true;
@Expose
@ConfigOption(name = "Bits on Cookie", desc = "Show the bits you would gain on a cookies.")
@ConfigEditorBoolean
@FeatureToggle
public boolean showBitsOnCookie = true;
@Expose
@ConfigOption(name = "Bits on Cookie Change", desc = "Show the change in available bits on cookies.")
@ConfigEditorBoolean
@FeatureToggle
public boolean showBitsChangeOnCookie = false;
@Expose
@ConfigOption(name = "Enable No Bits Warning", desc = "Alerts you when you have no bits available.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enableWarning = true;
@Expose
@ConfigOption(name = "Notification Sound", desc = "Play a notification sound when you get a warning.")
@ConfigEditorBoolean
public boolean notificationSound = true;
@Expose
@ConfigOption(name = "Bits Gain Chat Message", desc = "Show a chat message when you gain bits.")
@ConfigEditorBoolean
@FeatureToggle
public boolean bitsGainChatMessage = true;
@Expose
@ConfigOption(name = "Threshold", desc = "The amount of bits you need to have to not get a warning.")
@ConfigEditorSlider(minValue = 0, maxValue = 1000, minStep = 1)
public int threshold = 400;
}
|