diff options
author | Lorenz <lo.scherf@gmail.com> | 2022-09-14 13:12:01 +0200 |
---|---|---|
committer | Lorenz <lo.scherf@gmail.com> | 2022-09-14 13:12:01 +0200 |
commit | f13a583115443f732cbf5745d365cf02325efe1e (patch) | |
tree | 8514b30db7a89e5864eb1c2e7ab2ed3472fb44c9 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | fb2ec4494ec986cfdfcd9de6b9cacfe157f0ffdc (diff) | |
download | skyhanni-f13a583115443f732cbf5745d365cf02325efe1e.tar.gz skyhanni-f13a583115443f732cbf5745d365cf02325efe1e.tar.bz2 skyhanni-f13a583115443f732cbf5745d365cf02325efe1e.zip |
added Thunder to damage indicator and added Thunder Spark Highlight
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java | 1 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java | 28 |
2 files changed, 27 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java b/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java index 0062067b9..b14caba94 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java @@ -55,6 +55,7 @@ public class DamageIndicator { "\u00a7bDungeon Floor 6", "\u00a7bDungeon Floor 7", "\u00a7bDiana Mobs", + "\u00a7bThunder", "Dummy" } ) diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java b/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java index ce882e3dd..4632ccfb4 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java @@ -1,23 +1,47 @@ package at.hannibal2.skyhanni.config.features; -import at.hannibal2.skyhanni.config.core.config.annotations.ConfigEditorBoolean; -import at.hannibal2.skyhanni.config.core.config.annotations.ConfigOption; +import at.hannibal2.skyhanni.config.core.config.annotations.*; import com.google.gson.annotations.Expose; public class Fishing { + @ConfigOption(name = "Trophy Fishing", desc = "") + @ConfigEditorAccordion(id = 0) + public boolean trophyFishing = false; + @Expose @ConfigOption(name = "Trophy Counter", desc = "Counts every single Trohy message from chat and tells you how many you got already.") @ConfigEditorBoolean + @ConfigAccordionId(id = 0) public boolean trophyCounter = false; @Expose @ConfigOption(name = "Hide Bronze Duplicates", desc = "Hide duplicate messages for bronze trophy fishes from chat.") @ConfigEditorBoolean + @ConfigAccordionId(id = 0) public boolean trophyFishBronzeHider = false; @Expose @ConfigOption(name = "Shorten Fishing Message", desc = "Shorten the message what type of sea creature you have fished.") @ConfigEditorBoolean public boolean shortenFishingMessage = false; + + @ConfigOption(name = "Thunder Spark", desc = "") + @ConfigEditorAccordion(id = 1) + public boolean thunderSpark = false; + + @Expose + @ConfigOption(name = "Thunder Spark Highlight", desc = "Highlight Thunder Sparks after killing a Thunder") + @ConfigEditorBoolean + @ConfigAccordionId(id = 1) + public boolean thunderSparkHighlight = false; + + @Expose + @ConfigOption( + name = "Thunder Spark Color", + desc = "Color of the Thunder Sparks" + ) + @ConfigEditorColour + @ConfigAccordionId(id = 1) + public String thunderSparkColor = "0:245:FF:FF:FF"; }
\ No newline at end of file |