blob: ff6c2275a4456df3ee4f014e1dc76d3e3f737c20 (
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
|
package de.hysky.skyblocker.config.configs;
import dev.isxander.yacl3.config.v2.api.SerialEntry;
public class SlayersConfig {
@SerialEntry
public EndermanSlayer endermanSlayer = new EndermanSlayer();
@SerialEntry
public VampireSlayer vampireSlayer = new VampireSlayer();
public static class EndermanSlayer {
@SerialEntry
public boolean enableYangGlyphsNotification = true;
@SerialEntry
public boolean highlightBeacons = true;
@SerialEntry
public boolean highlightNukekubiHeads = true;
}
public static class VampireSlayer {
@SerialEntry
public boolean enableEffigyWaypoints = true;
@SerialEntry
public boolean compactEffigyWaypoints;
@SerialEntry
public int effigyUpdateFrequency = 5;
@SerialEntry
public boolean enableHolyIceIndicator = true;
@SerialEntry
public int holyIceIndicatorTickDelay = 10;
@SerialEntry
public int holyIceUpdateFrequency = 5;
@SerialEntry
public boolean enableHealingMelonIndicator = true;
@SerialEntry
public float healingMelonHealthThreshold = 4f;
@SerialEntry
public boolean enableSteakStakeIndicator = true;
@SerialEntry
public int steakStakeUpdateFrequency = 5;
@SerialEntry
public boolean enableManiaIndicator = true;
@SerialEntry
public int maniaUpdateFrequency = 5;
}
}
|