blob: 2abff6ac8165121031678321cb819666b857def7 (
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
|
package de.hysky.skyblocker.config.configs;
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();
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;
}
}
|