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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
package at.hannibal2.skyhanni.config.features;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.ConfigAccordionId;
import io.github.moulberry.moulconfig.annotations.ConfigEditorAccordion;
import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
import io.github.moulberry.moulconfig.annotations.ConfigOption;
public class Mobs {
@Expose
@ConfigOption(name = "Highlighters", desc = "")
@ConfigEditorAccordion(id = 0)
public boolean highlighters = false;
@Expose
@ConfigOption(name = "Area Boss", desc = "Highlight Golden Ghoul, Old Wolf, Voidling Extremist and Millenia-Aged Blaze.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean areaBossHighlight = true;
@Expose
@ConfigOption(name = "Arachne Keeper", desc = "Highlight corrupted mobs in purple color.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean arachneKeeperHighlight = true;
@Expose
@ConfigOption(name = "Corleone", desc = "Highlight Boss Corleone in the Crystal Hollows.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean corleoneHighlighter = true;
@Expose
@ConfigOption(name = "Zealot", desc = "Highlight Zealots and Bruisers in The End.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean zealotBruiserHighlighter = false;
@Expose
@ConfigOption(
name = "Special Zealots",
desc = "Highlight Special Zealots (the ones that drop summoning eyes) in the End."
)
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean specialZealotHighlighter = true;
@Expose
@ConfigOption(name = "Corrupted Mob", desc = "Highlight corrupted mobs in purple color.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean corruptedMobHighlight = false;
@Expose
@ConfigOption(name = "Respawn Timers", desc = "")
@ConfigEditorAccordion(id = 1)
public boolean timers = false;
@Expose
@ConfigOption(
name = "Area Boss",
desc = "Show a timer when Golden Ghoul, Old Wolf, Voidling Extremist or Millenia-Aged Blaze respawns. " +
"§cSometimes it takes 20-30 seconds to calibrate correctly."
)
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
public boolean areaBossRespawnTimer = false;
@Expose
@ConfigOption(name = "Enderman Teleportation Hider", desc = "Stops the Enderman Teleportation animation.")
@ConfigEditorBoolean
public boolean endermanTeleportationHider = true;
}
|