diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-25 17:15:01 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-25 17:15:01 +0200 |
commit | b2fb4746a3c7116ba7536c89979f0ea78cb363fb (patch) | |
tree | aaacfe68fb16cd9439a89b9566904ff8cfe723e2 /src/main/java/at/hannibal2/skyhanni/config | |
parent | d87d94c143ccad84e9680dc889051a90e99c9cb0 (diff) | |
download | skyhanni-b2fb4746a3c7116ba7536c89979f0ea78cb363fb.tar.gz skyhanni-b2fb4746a3c7116ba7536c89979f0ea78cb363fb.tar.bz2 skyhanni-b2fb4746a3c7116ba7536c89979f0ea78cb363fb.zip |
more slayer stuff
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java | 52 |
1 files changed, 38 insertions, 14 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java index bc584cbdb..a108e6c8c 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java @@ -7,55 +7,79 @@ import com.google.gson.annotations.Expose; public class Slayer { @Expose - @ConfigOption(name = "Blaze", desc = "") + @ConfigOption(name = "Enderman", desc = "") @ConfigEditorAccordion(id = 0) - public boolean damageSplash = false; + public boolean enderman = false; @Expose - @ConfigOption(name = "Pillar Display", desc = "Cooldown when the Fire Pillar from the Blaze Slayer will kill you.") + @ConfigOption(name = "Enderman Beacon", desc = "Highlight the enderman slayer Yang Glyph (Beacon) in red color. (supports beacon in hand and beacon flying)") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean slayerEndermanBeacon = false; + + @Expose + @ConfigOption(name = "Phase Display", desc = "Show the current phase of the enderman slayer.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) + public boolean endermanPhaseDisplay = false; + + @Expose + @ConfigOption(name = "Blaze", desc = "") + @ConfigEditorAccordion(id = 1) + public boolean blaze = false; + + @Expose + @ConfigOption(name = "Pillar Display", desc = "Cooldown when the Fire Pillar from the Blaze Slayer will kill you.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 1) public boolean firePillarDisplay = false; @Expose @ConfigOption(name = "Pillar Display Position", desc = "") @ConfigEditorButton(runnableId = "firePillar", buttonText = "Edit") - @ConfigAccordionId(id = 0) + @ConfigAccordionId(id = 1) public Position firePillarPos = new Position(10, 10, false, true); @Expose @ConfigOption(name = "Pillar Sound", desc = "Custom countdown sound for the Fire Pillar timer for the Blaze Slayer.") @ConfigEditorBoolean - @ConfigAccordionId(id = 0) + @ConfigAccordionId(id = 1) public boolean firePillarSound = false; @Expose @ConfigOption(name = "Hide Pillar", desc = "Hide sound and entities when building the Fire Pillar for the Blaze Slayer.") @ConfigEditorBoolean - @ConfigAccordionId(id = 0) + @ConfigAccordionId(id = 1) public boolean firePillarBuildHider = false; @Expose - @ConfigOption(name = "Blaze Daggers", desc = "Faster and permanent display for the Blaze Slayer daggers") + @ConfigOption(name = "Blaze Daggers", desc = "Faster and permanent display for the Blaze Slayer daggers.") @ConfigEditorBoolean - @ConfigAccordionId(id = 0) + @ConfigAccordionId(id = 1) public boolean blazeDaggers = false; @Expose - @ConfigOption(name = "Fire Pits", desc = "Warning when the fire pit phase starts for the Blaze Slayer tier 3 and 4") + @ConfigOption(name = "Fire Pits", desc = "Warning when the fire pit phase starts for the Blaze Slayer tier 3 and 4.") @ConfigEditorBoolean - @ConfigAccordionId(id = 0) + @ConfigAccordionId(id = 1) public boolean firePitsWarning = false; @Expose - @ConfigOption(name = "Miniboss Highlight", desc = "Highlight slayer miniboss in blue color") + @ConfigOption(name = "Phase Display", desc = "Show the current phase of the blaze slayer.") @ConfigEditorBoolean - public boolean slayerMinibossHighlight = false; + @ConfigAccordionId(id = 1) + public boolean blazePhaseDisplay = false; @Expose - @ConfigOption(name = "Enderman Beacon", desc = "Highlight the enderman slayer Yang Glyph (Beacon) in red color (supports beacon in hand and beacon flying)") + @ConfigOption(name = "Colored Mobs", desc = "Color the blaze slayer boss and the demons in the right hellion shield color.") @ConfigEditorBoolean - public boolean slayerEndermanBeacon = false; + @ConfigAccordionId(id = 1) + public boolean blazeColoredMobs = false; + + @Expose + @ConfigOption(name = "Miniboss Highlight", desc = "Highlight slayer miniboss in blue color") + @ConfigEditorBoolean + public boolean slayerMinibossHighlight = false; @Expose @ConfigOption(name = "Hide Mob Names", desc = "Hide the name of the mobs you need to kill in order for the Slayer boss to spawn. Exclude mobs that are damaged, corrupted, runic or semi rare.") |