blob: ae5de833a38269baaa81b2d35d36823b9d7937fb (
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
|
package at.hannibal2.skyhanni.config.features.fishing;
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 RareCatchesConfig {
@Expose
@ConfigOption(name = "Alert (Own Sea Creatures)", desc = "Show an alert on screen when you catch a rare sea creature.")
@ConfigEditorBoolean
@FeatureToggle
public boolean alertOwnCatches = true;
@Expose
@ConfigOption(name = "Alert (Other Sea Creatures)", desc = "Show an alert on screen when other players nearby catch a rare sea creature.")
@ConfigEditorBoolean
public boolean alertOtherCatches = false;
@Expose
@ConfigOption(name = "Creature Name", desc = "Say what creature was caught in the alert.")
@ConfigEditorBoolean
public boolean creatureName = true;
@Expose
@ConfigOption(name = "Play Sound Alert", desc = "Play a sound effect when rare sea creature alerts are displayed.")
@ConfigEditorBoolean
public boolean playSound = true;
@Expose
@ConfigOption(name = "Highlight", desc = "Highlight nearby rare sea creatures.")
@ConfigEditorBoolean
@FeatureToggle
public boolean highlight = false;
}
|