From 40745b8f209d16a9adbc0a21931d5f466c92c646 Mon Sep 17 00:00:00 2001 From: MrFast <78495381+MrFast-js@users.noreply.github.com> Date: Fri, 16 Feb 2024 03:56:33 -0500 Subject: Crimson Isle Volcano Geyser features. #980 --- .../fishing/trophyfishing/GeyserFishingConfig.java | 31 ++++++++++++++++++++++ .../fishing/trophyfishing/TrophyFishingConfig.java | 5 ++++ 2 files changed, 36 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/GeyserFishingConfig.java (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/GeyserFishingConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/GeyserFishingConfig.java new file mode 100644 index 000000000..a0f243ce5 --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/GeyserFishingConfig.java @@ -0,0 +1,31 @@ +package at.hannibal2.skyhanni.config.features.fishing.trophyfishing; + +import at.hannibal2.skyhanni.config.FeatureToggle; +import com.google.gson.annotations.Expose; +import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean; +import io.github.moulberry.moulconfig.annotations.ConfigEditorColour; +import io.github.moulberry.moulconfig.annotations.ConfigOption; + +public class GeyserFishingConfig { + + @Expose + @ConfigOption( + name = "Hide Geyser Particles", + desc = "Stops the white geyser smoke particles from rendering if your bobber is near the geyser.") + @ConfigEditorBoolean + @FeatureToggle + public boolean hideParticles = true; + + @Expose + @ConfigOption( + name = "Draw Geyser Box", + desc = "Draws a box around the effective area of the geyser.") + @ConfigEditorBoolean + @FeatureToggle + public boolean drawBox = true; + + @Expose + @ConfigOption(name = "Geyser Box Color", desc = "Color of the Geyser Box.") + @ConfigEditorColour + public String boxColor = "0:245:85:255:85"; +} diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/TrophyFishingConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/TrophyFishingConfig.java index ebcf64cec..1b180efc9 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/TrophyFishingConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/TrophyFishingConfig.java @@ -13,6 +13,11 @@ public class TrophyFishingConfig { @Accordion public ChatMessagesConfig chatMessages = new ChatMessagesConfig(); + @Expose + @ConfigOption(name = "Geyser Fishing", desc = "") + @Accordion + public GeyserFishingConfig geyserOptions = new GeyserFishingConfig(); + @Expose @ConfigOption(name = "Fillet Tooltip", desc = "Show fillet value of Trophy Fish in tooltip.") @ConfigEditorBoolean -- cgit