blob: 5bc1c4b77b7fb5c45e26be453b60dca4213ef819 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
package de.hysky.skyblocker.config.configs;
import dev.isxander.yacl3.config.v2.api.SerialEntry;
public class OtherLocationsConfig {
@SerialEntry
public Barn barn = new Barn();
@SerialEntry
public Rift rift = new Rift();
@SerialEntry
public TheEnd end = new TheEnd();
@SerialEntry
public SpidersDen spidersDen = new SpidersDen();
public static class Barn {
@SerialEntry
public boolean solveHungryHiker = true;
@SerialEntry
public boolean solveTreasureHunter = true;
}
public static class Rift {
@SerialEntry
public boolean mirrorverseWaypoints = true;
@SerialEntry
public boolean blobbercystGlow = true;
@SerialEntry
public boolean enigmaSoulWaypoints = false;
@SerialEntry
public boolean highlightFoundEnigmaSouls = true;
@SerialEntry
public int mcGrubberStacks = 0;
}
public static class TheEnd {
@SerialEntry
public boolean enableEnderNodeHelper = true;
@SerialEntry
public boolean hudEnabled = true;
@SerialEntry
public boolean zealotKillsEnabled = true;
@SerialEntry
public boolean protectorLocationEnabled = true;
@SerialEntry
public boolean waypoint = true;
@SerialEntry
public int x = 10;
@SerialEntry
public int y = 10;
}
public static class SpidersDen {
@SerialEntry
public Relics relics = new Relics();
}
public static class Relics {
@SerialEntry
public boolean enableRelicsHelper = false;
@SerialEntry
public boolean highlightFoundRelics = true;
}
}
|