blob: 488592d3dfe61815b20110c820f6603770d95e04 (
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 at.hannibal2.skyhanni.config.features.dungeon;
import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class ObjectHiderConfig {
@Expose
@ConfigOption(name = "Hide Superboom TNT", desc = "Hide Superboom TNT laying around in Dungeons.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideSuperboomTNT = false;
@Expose
@ConfigOption(name = "Hide Blessings", desc = "Hide Blessings laying around in Dungeons.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideBlessing = false;
@Expose
@ConfigOption(name = "Hide Revive Stones", desc = "Hide Revive Stones laying around in Dungeons.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideReviveStone = false;
@Expose
@ConfigOption(name = "Hide Premium Flesh", desc = "Hide Premium Flesh laying around in Dungeons.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hidePremiumFlesh = false;
@Expose
@ConfigOption(name = "Hide Journal Entry", desc = "Hide Journal Entry pages laying around in Dungeons.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideJournalEntry = false;
@Expose
@ConfigOption(name = "Hide Skeleton Skull", desc = "Hide Skeleton Skulls laying around in Dungeons.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideSkeletonSkull = true;
@Expose
@ConfigOption(name = "Hide Healer Orbs", desc = "Hide the damage, ability damage and defensive orbs that spawn when the Healer kills mobs.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideHealerOrbs = false;
@Expose
@ConfigOption(name = "Hide Healer Fairy", desc = "Hide the Golden Fairy that follows the Healer in Dungeons.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideHealerFairy = false;
@Expose
@ConfigOption(
name = "Hide Soulweaver Skulls",
desc = "Hide the annoying soulweaver skulls that float around you if you have the soulweaver gloves equipped.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideSoulweaverSkulls = false;
}
|