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
87
88
89
90
91
92
93
|
package at.hannibal2.skyhanni.config.features.fishing;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.core.config.Position;
import at.hannibal2.skyhanni.config.features.fishing.trophyfishing.TrophyFishingConfig;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.Accordion;
import io.github.notenoughupdates.moulconfig.annotations.Category;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class FishingConfig {
@Expose
@Category(name = "Trophy Fishing", desc = "Trophy Fishing Settings")
public TrophyFishingConfig trophyFishing = new TrophyFishingConfig();
@Expose
@ConfigOption(name = "Thunder Spark", desc = "")
@Accordion
public ThunderSparkConfig thunderSpark = new ThunderSparkConfig();
@Expose
@ConfigOption(name = "Barn Fishing Timer", desc = "")
@Accordion
public BarnTimerConfig barnTimer = new BarnTimerConfig();
@Expose
@ConfigOption(name = "Chum/Chumcap Bucket Hider", desc = "")
@Accordion
public ChumBucketHiderConfig chumBucketHider = new ChumBucketHiderConfig();
@Expose
@ConfigOption(name = "Fished Item Name", desc = "")
@Accordion
public FishedItemNameConfig fishedItemName = new FishedItemNameConfig();
@Expose
@ConfigOption(name = "Fishing Hook Display", desc = "")
@Accordion
public FishingHookDisplayConfig fishingHookDisplay = new FishingHookDisplayConfig();
@Expose
@ConfigOption(name = "Bait Warnings", desc = "")
@Accordion
public FishingBaitWarningsConfig fishingBaitWarnings = new FishingBaitWarningsConfig();
@Expose
@ConfigOption(name = "Rare Sea Creatures", desc = "")
@Accordion
public RareCatchesConfig rareCatches = new RareCatchesConfig();
@Expose
@ConfigOption(name = "Fishing Profit Tracker", desc = "")
@Accordion
public FishingProfitTrackerConfig fishingProfitTracker = new FishingProfitTrackerConfig();
@Expose
@ConfigOption(name = "Totem of Corruption", desc = "")
@Accordion
public TotemOfCorruptionConfig totemOfCorruption = new TotemOfCorruptionConfig();
@Expose
@ConfigOption(name = "Sea Creature Tracker", desc = "")
@Accordion
public SeaCreatureTrackerConfig seaCreatureTracker = new SeaCreatureTrackerConfig();
@Expose
@ConfigOption(
name = "Shark Fish Counter",
desc = "Counts how many Sharks have been caught."
)
@ConfigEditorBoolean
@FeatureToggle
public boolean sharkFishCounter = false;
@Expose
@ConfigLink(owner = FishingConfig.class, field = "sharkFishCounter")
public Position sharkFishCounterPos = new Position(10, 10, false, true);
@Expose
@ConfigOption(name = "Shorten Fishing Message", desc = "Shorten the chat message that says what type of Sea Creature you have fished.")
@ConfigEditorBoolean
@FeatureToggle
public boolean shortenFishingMessage = false;
@Expose
@ConfigOption(name = "Compact Double Hook", desc = "Add Double Hook to the Sea Creature chat message instead of in a previous line.")
@ConfigEditorBoolean
@FeatureToggle
public boolean compactDoubleHook = true;
}
|