diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-11 07:59:44 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-11 07:59:44 +0100 |
commit | cdd5817c96ebb284c8bf9b2178d70aae0ba9847f (patch) | |
tree | 6a602ef8990a69af23e555721d3be7da0208906a /src | |
parent | 3280234378b3fea8699be37638ba731514bf973d (diff) | |
download | skyhanni-cdd5817c96ebb284c8bf9b2178d70aae0ba9847f.tar.gz skyhanni-cdd5817c96ebb284c8bf9b2178d70aae0ba9847f.tar.bz2 skyhanni-cdd5817c96ebb284c8bf9b2178d70aae0ba9847f.zip |
Better structure in Mobs config.
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java | 43 |
1 files changed, 25 insertions, 18 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java b/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java index eb78ddb53..2253dc3eb 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java @@ -9,47 +9,54 @@ import com.google.gson.annotations.Expose; public class Mobs { @Expose - @ConfigOption( - name = "Area Boss", - desc = "Golden Ghoul, Old Wolf, Voidling Extremist and Millenia-Aged Blaze" - ) + @ConfigOption(name = "Highlighters", desc = "") @ConfigEditorAccordion(id = 0) - public boolean areaBosses = false; + public boolean highlighters = false; @Expose - @ConfigOption(name = "Highlight Area Boss", desc = "Highlight area boss.") + @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 = "Area Bosses Respawn Timer", desc = "Show a timer when the area boss spawns.") + @ConfigOption(name = "Arachne Keeper", desc = "Highlight corrupted mobs in purple color.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) - public boolean areaBossRespawnTimer = false; + public boolean arachneKeeperHighlight = true; @Expose - @ConfigOption(name = "Corrupted Mob Highlight", desc = "Highlight corrupted mobs in purple color.") + @ConfigOption(name = "Corleone", desc = "Highlight Boss Corleone in the Crystal Hollows.") @ConfigEditorBoolean - public boolean corruptedMobHighlight = false; + @ConfigAccordionId(id = 0) + public boolean corleoneHighlighter = true; @Expose - @ConfigOption(name = "Arachne Keeper Highlight", desc = "Highlight corrupted mobs in purple color.") + @ConfigOption(name = "Zealot", desc = "Highlight Zealots and Bruisers in The End.") @ConfigEditorBoolean - public boolean arachneKeeperHighlight = true; + @ConfigAccordionId(id = 0) + public boolean zealotBruiserHighlighter = false; @Expose - @ConfigOption(name = "Corleone Highlighter", desc = "Highlight Boss Corleone in the Crystal Hollows.") + @ConfigOption(name = "Special Zealots", desc = "Highlight Special Zealots in The End. (The one that drops Summoning Eyes)") @ConfigEditorBoolean - public boolean corleoneHighlighter = true; + @ConfigAccordionId(id = 0) + public boolean specialZealotHighlighter = true; @Expose - @ConfigOption(name = "Zealots Highlighter", desc = "Highlight Zealots and Bruisers in The End.") + @ConfigOption(name = "Corrupted Mob", desc = "Highlight corrupted mobs in purple color.") @ConfigEditorBoolean - public boolean zealotBruiserHighlighter = false; + @ConfigAccordionId(id = 0) + public boolean corruptedMobHighlight = false; @Expose - @ConfigOption(name = "Special Zealots Highlighter", desc = "Highlight Special Zealots in The End. (The one that drops Summoning Eyes)") + @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.") @ConfigEditorBoolean - public boolean specialZealotHighlighter = true; + @ConfigAccordionId(id = 1) + public boolean areaBossRespawnTimer = false; } |