blob: 451d19834e81600c717f3fe5a2833b9e182b768b (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
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();
@SerialEntry
public Dojo dojo = new Dojo();
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;
}
public static class Dojo {
@SerialEntry
public boolean enableForceHelper = true;
@SerialEntry
public boolean enableStaminaHelper = true;
@SerialEntry
public boolean enableMasteryHelper = true;
@SerialEntry
public boolean enableDisciplineHelper = true;
@SerialEntry
public boolean enableSwiftnessHelper = true;
@SerialEntry
public boolean enableControlHelper = true;
@SerialEntry
public boolean enableTenacityHelper = true;
}
}
|