From 1f64f15f8cd4a53b5d970248972a138c5db95655 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 11 Feb 2023 07:46:01 +0100 Subject: Added Kuudra Key Number overlay. Added colored highlight support for zealots, bruisers and special zealots. --- .../at/hannibal2/skyhanni/config/features/Inventory.java | 3 ++- .../java/at/hannibal2/skyhanni/config/features/Mobs.java | 16 +++++++++++++--- 2 files changed, 15 insertions(+), 4 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java index 6c4496af3..d1a42c252 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java @@ -102,7 +102,8 @@ public class Inventory { "§bPet Level", "§bMinion Tier", "§bCrimson Armor", - "§bWishing Compass" + "§bWishing Compass", + "§bKuudra Key" } ) public List itemNumberAsStackSize = new ArrayList<>(Collections.singletonList(3)); 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 feda60b5b..9becb348e 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java @@ -30,17 +30,27 @@ public class Mobs { public boolean areaMinisBossesRespawnTimer = false; @Expose - @ConfigOption(name = "Corrupted Mob Highlight", desc = "Highlight corrupted mobs in purple color") + @ConfigOption(name = "Corrupted Mob Highlight", desc = "Highlight corrupted mobs in purple color.") @ConfigEditorBoolean public boolean corruptedMobHighlight = false; @Expose - @ConfigOption(name = "Arachne Keeper Highlight", desc = "Highlight corrupted mobs in purple color") + @ConfigOption(name = "Arachne Keeper Highlight", desc = "Highlight corrupted mobs in purple color.") @ConfigEditorBoolean public boolean arachneKeeperHighlight = true; @Expose - @ConfigOption(name = "Corleone Highlighter", desc = "Highlight Boss Corleone in the Crystal Hollows") + @ConfigOption(name = "Corleone Highlighter", desc = "Highlight Boss Corleone in the Crystal Hollows.") @ConfigEditorBoolean public boolean corleoneHighlighter = true; + + @Expose + @ConfigOption(name = "Zealots Highlighter", desc = "Highlight Zealots and Bruisers in The End.") + @ConfigEditorBoolean + public boolean zealotBruiserHighlighter = false; + + @Expose + @ConfigOption(name = "Special Zealots Highlighter", desc = "Highlight Special Zealots in The End. (The one that drops Summoning Eyes)") + @ConfigEditorBoolean + public boolean specialZealotHighlighter = true; } -- cgit