blob: c031492422302489e668731ed8fb47042c478586 (
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
80
81
82
83
84
85
86
|
package de.hysky.skyblocker.config.configs;
import de.hysky.skyblocker.utils.waypoint.Waypoint;
import dev.isxander.yacl3.config.v2.api.SerialEntry;
public class HelperConfig {
@SerialEntry
public boolean enableNewYearCakesHelper = true;
@SerialEntry
public MythologicalRitual mythologicalRitual = new MythologicalRitual();
@SerialEntry
public Experiments experiments = new Experiments();
@SerialEntry
public Fishing fishing = new Fishing();
@SerialEntry
public FairySouls fairySouls = new FairySouls();
@SerialEntry
public ChocolateFactory chocolateFactory = new ChocolateFactory();
public static class MythologicalRitual {
@SerialEntry
public boolean enableMythologicalRitualHelper = true;
}
public static class Experiments {
@SerialEntry
public boolean enableChronomatronSolver = true;
@SerialEntry
public boolean enableSuperpairsSolver = true;
@SerialEntry
public boolean enableUltrasequencerSolver = true;
}
public static class Fishing {
@SerialEntry
public boolean enableFishingHelper = true;
@SerialEntry
public boolean enableFishingTimer = false;
@SerialEntry
public boolean changeTimerColor = true;
@SerialEntry
public float fishingTimerScale = 1f;
@SerialEntry
public boolean hideOtherPlayersRods = false;
}
public static class FairySouls {
@SerialEntry
public boolean enableFairySoulsHelper = false;
@SerialEntry
public boolean highlightFoundSouls = true;
@SerialEntry
public boolean highlightOnlyNearbySouls = false;
}
public static class ChocolateFactory {
@SerialEntry
public boolean enableChocolateFactoryHelper = true;
@SerialEntry
public boolean enableEggFinder = true;
@SerialEntry
public boolean sendEggFoundMessages = true;
@SerialEntry
public Waypoint.Type waypointType = Waypoint.Type.WAYPOINT;
@SerialEntry
public boolean enableTimeTowerReminder = true;
}
}
|