blob: 0955081dd960e0023c5120d6b6e09671164b9a9c (
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
|
package at.hannibal2.skyhanni.config.features;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.*;
public class ItemAbilities {
@Expose
@ConfigOption(name = "Ability Cooldown", desc = "Show the cooldown of item abilities.")
@ConfigEditorBoolean
public boolean itemAbilityCooldown = false;
@Expose
@ConfigOption(name = "Ability Cooldown Background", desc = "Show the cooldown color of item abilities in the background.")
@ConfigEditorBoolean
public boolean itemAbilityCooldownBackground = false;
@Expose
@ConfigOption(name = "Fire Veil", desc = "")
@ConfigEditorAccordion(id = 1)
public boolean fireVeilWand = false;
@Expose
@ConfigOption(name = "Fire Veil Design", desc = "Changes the flame particles of the Fire Veil Wand ability.")
@ConfigEditorDropdown(values = {"Particles", "Line", "Off"})
@ConfigAccordionId(id = 1)
public int fireVeilWandDisplay = 0;
@Expose
@ConfigOption(
name = "Line Color",
desc = "Changes the color of the Fire Veil Wand line."
)
@ConfigEditorColour
@ConfigAccordionId(id = 1)
public String fireVeilWandDisplayColor = "0:245:255:85:85";
}
|