aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/options
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-07-26 14:00:45 +0200
committerGitHub <noreply@github.com>2022-07-26 22:00:45 +1000
commit5bcf7cc19df3ff59385b1de06cc3e2e827f5e2b6 (patch)
treeed52c6dbb61df92cd6fe7e9cb94a753ba1ca2a15 /src/main/java/io/github/moulberry/notenoughupdates/options
parent01ce1186f271be0fc9cd65d759bc3905392c4ca8 (diff)
downloadnotenoughupdates-5bcf7cc19df3ff59385b1de06cc3e2e827f5e2b6.tar.gz
notenoughupdates-5bcf7cc19df3ff59385b1de06cc3e2e827f5e2b6.tar.bz2
notenoughupdates-5bcf7cc19df3ff59385b1de06cc3e2e827f5e2b6.zip
Added power stone feature (#194)
Co-authored-by: Lorenz <ESs95s3P5z8Pheb>
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java2
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/TooltipTweaks.java8
2 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java
index e1848382..ade9edfe 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java
@@ -564,6 +564,8 @@ public class NEUConfig extends Config {
public long dailyHeavyPearlCompleted = 0L;
@Expose
public HashMap<Integer, JsonObject> savedEquipment = new HashMap<>();
+ @Expose
+ public int magicalPower = 0;
}
public HiddenLocationSpecific getLocationSpecific() {
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/TooltipTweaks.java b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/TooltipTweaks.java
index d1660e68..bcb7e8a7 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/TooltipTweaks.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/TooltipTweaks.java
@@ -172,4 +172,12 @@ public class TooltipTweaks {
minStep = 1f
)
public int tooltipBorderOpacity = 200;
+
+ @Expose
+ @ConfigOption(
+ name = "Power Stone Stats",
+ desc = "Show your real magical power and real stat increase on power stones"
+ )
+ @ConfigEditorBoolean
+ public boolean powerStoneStats = true;
}