aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-11 01:27:52 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-11 01:27:52 +0100
commite9af5bd4d0f5c095adeacc94020ba24bbb57c19d (patch)
treef2cc86e4103db866271584280b8da868dc709199 /src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java
parente9e11dc45f34deb6977009c8267eed99f0ef00e1 (diff)
downloadSkyHanni-e9af5bd4d0f5c095adeacc94020ba24bbb57c19d.tar.gz
SkyHanni-e9af5bd4d0f5c095adeacc94020ba24bbb57c19d.tar.bz2
SkyHanni-e9af5bd4d0f5c095adeacc94020ba24bbb57c19d.zip
Reworked entity highlight config for area mini bosses, slayer mini bosses, corrupted mobs and arachne keepers.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java41
1 files changed, 41 insertions, 0 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
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;
+}