From 624bad4f41f62e58b3c3922eddf54944181d4b6e Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Wed, 31 Jan 2024 14:13:58 +0100 Subject: Hide particles and damage splashes during terracotta phase in dungeon F6/M6. --- .../config/features/dungeon/DungeonConfig.java | 6 ++++++ .../features/dungeon/TerracottaPhaseConfig.java | 20 ++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/config/features/dungeon/TerracottaPhaseConfig.java (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/DungeonConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/DungeonConfig.java index 84cba4de7..0b1eecff6 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/DungeonConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/DungeonConfig.java @@ -86,6 +86,12 @@ public class DungeonConfig { @Accordion public LividFinderConfig lividFinder = new LividFinderConfig(); + + @Expose + @ConfigOption(name = "Terracotta Phase", desc = "") + @Accordion + public TerracottaPhaseConfig terracottaPhase = new TerracottaPhaseConfig(); + @Expose @ConfigOption(name = "Moving Skeleton Skulls", desc = "Highlight Skeleton Skulls when combining into an " + "orange Skeletor (not useful when combined with feature Hide Skeleton Skull).") diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/TerracottaPhaseConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/TerracottaPhaseConfig.java new file mode 100644 index 000000000..b546bc8ec --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/TerracottaPhaseConfig.java @@ -0,0 +1,20 @@ +package at.hannibal2.skyhanni.config.features.dungeon; + +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.ConfigOption; + +public class TerracottaPhaseConfig { + + @Expose + @ConfigOption(name = "Hide Particles", desc = "Hide particles that spawn from terracottas during sadan fight.") + @ConfigEditorBoolean + @FeatureToggle + public boolean hideParticles = false; + + @Expose + @ConfigOption(name = "Hide Damage Splash", desc = "Hide damage splashes during the terracotta phase.") + @ConfigEditorBoolean + public boolean hideDamageSplash = false; +} -- cgit