blob: 21ba39b8eccf4d9435012ce5f021b4fd2a778b74 (
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
|
package at.hannibal2.skyhanni.config.features.itemability;
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.Accordion;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class ItemAbilityConfig {
@Expose
@ConfigOption(name = "Ability Cooldown", desc = "Show the cooldown of item abilities.")
@ConfigEditorBoolean
@FeatureToggle
// TODO rename to "enabled"
public boolean itemAbilityCooldown = false;
@Expose
@ConfigOption(name = "Ability Cooldown Background", desc = "Show the cooldown color of item abilities in the background.")
@ConfigEditorBoolean
// TODO rename to "background"
public boolean itemAbilityCooldownBackground = false;
@Expose
@ConfigOption(name = "Show When Ready", desc = "Show the R and background (if enabled) when the ability is ready.")
@ConfigEditorBoolean
public boolean itemAbilityShowWhenReady = true;
@Expose
@ConfigOption(name = "Fire Veil", desc = "")
@Accordion
public FireVeilWandConfig fireVeilWands = new FireVeilWandConfig();
@ConfigOption(name = "Chicken Head", desc = "")
@Accordion
@Expose
public ChickenHeadConfig chickenHead = new ChickenHeadConfig();
@ConfigOption(name = "Crown of Avarice", desc = "")
@Accordion
@Expose
public CrownOfAvariceConfig crownOfAvarice = new CrownOfAvariceConfig();
@Expose
@ConfigOption(name = "Depleted Bonzo's Masks",
desc = "Highlight used Bonzo's Masks and Spirit Masks with a background.")
@ConfigEditorBoolean
@FeatureToggle
public boolean depletedBonzosMasks = false;
}
|