aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung/dungeonsguide/features/impl/solvers
diff options
context:
space:
mode:
authorsyeyoung <cyoung06@naver.com>2021-10-09 12:20:55 +0900
committersyeyoung <cyoung06@naver.com>2021-10-09 12:20:55 +0900
commit0b1a144b3847df60e78c79a6fe66ed99732e11d5 (patch)
tree91b01f9e5bd611dfddb3e0c7ceafd62fccdb422f /src/main/java/kr/syeyoung/dungeonsguide/features/impl/solvers
parent21ed396dd1ae4d8b327f44cc013d2dd033a04209 (diff)
downloadSkyblock-Dungeons-Guide-0b1a144b3847df60e78c79a6fe66ed99732e11d5.tar.gz
Skyblock-Dungeons-Guide-0b1a144b3847df60e78c79a6fe66ed99732e11d5.tar.bz2
Skyblock-Dungeons-Guide-0b1a144b3847df60e78c79a6fe66ed99732e11d5.zip
- blaze color
Diffstat (limited to 'src/main/java/kr/syeyoung/dungeonsguide/features/impl/solvers')
-rw-r--r--src/main/java/kr/syeyoung/dungeonsguide/features/impl/solvers/FeatureSolverBlaze.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/features/impl/solvers/FeatureSolverBlaze.java b/src/main/java/kr/syeyoung/dungeonsguide/features/impl/solvers/FeatureSolverBlaze.java
new file mode 100644
index 00000000..1e698414
--- /dev/null
+++ b/src/main/java/kr/syeyoung/dungeonsguide/features/impl/solvers/FeatureSolverBlaze.java
@@ -0,0 +1,46 @@
+/*
+ * Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
+ * Copyright (C) 2021 cyoung06
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published
+ * by the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+package kr.syeyoung.dungeonsguide.features.impl.solvers;
+
+import kr.syeyoung.dungeonsguide.config.types.AColor;
+import kr.syeyoung.dungeonsguide.features.FeatureParameter;
+import kr.syeyoung.dungeonsguide.features.SimpleFeature;
+
+public class FeatureSolverBlaze extends SimpleFeature {
+ public FeatureSolverBlaze() {
+ super("Solver.Floor 2+", "Blaze", "Highlights the blaze that needs to be killed in an blaze room", "solver.blaze");
+ parameters.put("normBlazeColor", new FeatureParameter<AColor>("blazecolor", "Normal Blaze Color", "Normal Blaze Color", new AColor(255,255,255,255), "acolor"));
+ parameters.put("nextBlazeColor", new FeatureParameter<AColor>("blazecolor", "Next Blaze Color", "Next Blaze Color", new AColor(0,255,0,255), "acolor"));
+ parameters.put("nextUpBlazeColor", new FeatureParameter<AColor>("blazecolor", "Next Up Blaze Color", "Color of blaze after next blaze", new AColor(255,255,0,255), "acolor"));
+ parameters.put("blazeborder", new FeatureParameter<AColor>("blazeborder", "Blaze Border Color", "Blaze border color", new AColor(255,255,255,0), "acolor"));
+ }
+
+ public AColor getBlazeColor() {
+ return this.<AColor>getParameter("normBlazeColor").getValue();
+ }
+ public AColor getNextBlazeColor() {
+ return this.<AColor>getParameter("nextBlazeColor").getValue();
+ }
+ public AColor getNextUpBlazeColor() {
+ return this.<AColor>getParameter("nextUpBlazeColor").getValue();
+ }
+ public AColor getBorder() {
+ return this.<AColor>getParameter("blazeborder").getValue();
+ }
+}