From e9af5bd4d0f5c095adeacc94020ba24bbb57c19d Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 11 Feb 2023 01:27:52 +0100 Subject: Reworked entity highlight config for area mini bosses, slayer mini bosses, corrupted mobs and arachne keepers. --- .../hannibal2/skyhanni/config/features/Mobs.java | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java (limited to 'src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java b/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java new file mode 100644 index 000000000..91ea4c492 --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java @@ -0,0 +1,41 @@ +package at.hannibal2.skyhanni.config.features; + +import at.hannibal2.skyhanni.config.core.config.annotations.ConfigAccordionId; +import at.hannibal2.skyhanni.config.core.config.annotations.ConfigEditorAccordion; +import at.hannibal2.skyhanni.config.core.config.annotations.ConfigEditorBoolean; +import at.hannibal2.skyhanni.config.core.config.annotations.ConfigOption; +import com.google.gson.annotations.Expose; + +public class Mobs { + + @Expose + @ConfigOption( + name = "Area Mini Bosses", + desc = "Special mobs in slayer regions that have way more hp than normal mobs:" + + "\nGolden Ghoul, Old Wolf, Voidling Extremist and Millenia-Aged Blaze" + ) + @ConfigEditorAccordion(id = 0) + public boolean areaMiniBosses = false; + + @Expose + @ConfigOption(name = "Highlight Mini Bosses", desc = "Highlight area mini bosses") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean areaMiniBossesHighlight = true; + + @Expose + @ConfigOption(name = "Mini Bosses Respawn Timer", desc = "Show a timer when area mini bosses spawn.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean areaMinisBossesRespawnTimer = false; + + @Expose + @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") + @ConfigEditorBoolean + public boolean arachneKeeperHighlight = true; +} -- cgit