summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorJ10a1n15 <45315647+j10a1n15@users.noreply.github.com>2024-06-13 20:14:16 +0200
committerGitHub <noreply@github.com>2024-06-13 20:14:16 +0200
commit045c39701411b5c9a5ffcbffb45ce34c09f1c2c6 (patch)
treed32d2be8fbea11ef307891a8778b57e8b4d69789 /src/main/java/at/hannibal2/skyhanni/config/features
parent9eee8c80ee5877ca627c8b545936bf37454fa17e (diff)
downloadskyhanni-045c39701411b5c9a5ffcbffb45ce34c09f1c2c6.tar.gz
skyhanni-045c39701411b5c9a5ffcbffb45ce34c09f1c2c6.tar.bz2
skyhanni-045c39701411b5c9a5ffcbffb45ce34c09f1c2c6.zip
Feature: Total Powder Cost in Perk Lore (#1460)
Co-authored-by: J10a1n15 <45315647+j10a1n15@users.noreply.github.com> Co-authored-by: Empa <42304516+ItsEmpa@users.noreply.github.com> Co-authored-by: martimavocado <39881008+martimavocado@users.noreply.github.com> Co-authored-by: Thunderblade73 <gaidermarkus@gmail.com> Co-authored-by: Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> Co-authored-by: martimavocado <martim.cavaco@tutanota.com> Co-authored-by: Cal <cwolfson58@gmail.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/mining/HotmConfig.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/mining/HotmConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/mining/HotmConfig.java
index cbe7d0be0..3f6ef33db 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/mining/HotmConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/mining/HotmConfig.java
@@ -1,9 +1,12 @@
package at.hannibal2.skyhanni.config.features.mining;
import at.hannibal2.skyhanni.config.FeatureToggle;
+import at.hannibal2.skyhanni.features.mining.PowderPerHotmPerk.PowderSpentDesign;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
+import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorDropdown;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
+import org.jetbrains.annotations.NotNull;
public class HotmConfig {
@@ -24,4 +27,21 @@ public class HotmConfig {
@ConfigEditorBoolean
@FeatureToggle
public boolean tokenStackSize = true;
+
+ @Expose
+ @ConfigOption(name = "Powder Spent", desc = "Shows the amount of powder spent on a perk.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean powderSpent = true;
+
+ @Expose
+ @ConfigOption(name = "Powder Spent Design", desc = "Changes the design of the powder spent display.")
+ @ConfigEditorDropdown
+ public @NotNull PowderSpentDesign powderSpentDesign = PowderSpentDesign.NUMBER_AND_PERCENTAGE;
+
+ @Expose
+ @ConfigOption(name = "Powder for 10 Levels", desc = "Shows the amount of powder needed to level a perk 10 times when pressing shift.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean powderFor10Levels = true;
}