blob: 16121b9ad2b1548c1fc901abef395c30811ded2d (
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
|
package at.hannibal2.skyhanni.config.features.itemability;
import at.hannibal2.skyhanni.config.HasLegacyId;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorColour;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorDropdown;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class FireVeilWandConfig {
@Expose
@ConfigOption(name = "Fire Veil Design", desc = "Change the flame particles of the Fire Veil Wand ability.")
@ConfigEditorDropdown
public DisplayEntry display = DisplayEntry.PARTICLES;
public enum DisplayEntry implements HasLegacyId {
PARTICLES("Particles", 0),
LINE("Line", 1),
OFF("Off", 2),
;
private final String str;
private final int legacyId;
DisplayEntry(String str, int legacyId) {
this.str = str;
this.legacyId = legacyId;
}
// Constructor if new enum elements are added post-migration
DisplayEntry(String str) {
this(str, -1);
}
@Override
public int getLegacyId() {
return legacyId;
}
@Override
public String toString() {
return str;
}
}
@Expose
@ConfigOption(
name = "Line Color",
desc = "Change the color of the Fire Veil Wand line."
)
@ConfigEditorColour
public String displayColor = "0:245:255:85:85";
}
|