aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/de/hysky/skyblocker/config/configs/CrimsonIsleConfig.java
blob: 8dd93aee5860d455985d1c07e302e6aa17685e4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package de.hysky.skyblocker.config.configs;

import de.hysky.skyblocker.utils.waypoint.Waypoint;
import dev.isxander.yacl3.config.v2.api.SerialEntry;

public class CrimsonIsleConfig {
    @SerialEntry
    public Kuudra kuudra = new Kuudra();

    public static class Kuudra {
        @SerialEntry
        public boolean supplyWaypoints = true;

        @SerialEntry
        public boolean fuelWaypoints = true;

        @SerialEntry
        public Waypoint.Type suppliesAndFuelWaypointType = Waypoint.Type.WAYPOINT;

        @SerialEntry
        public boolean ballistaBuildWaypoints = true;

        @SerialEntry
        public boolean safeSpotWaypoints = true;

        @SerialEntry
        public boolean pearlWaypoints = true;

        @SerialEntry
        public boolean noArrowPoisonWarning = true;

        @SerialEntry
        public int arrowPoisonThreshold = 32;
    }
}