summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/PartyFinderConfig.java
blob: 64c855cfbb7e9531baca2ea60f80a5864d0bbfa0 (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
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.ConfigEditorSlider;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;

public class PartyFinderConfig {
    @Expose
    @ConfigOption(name = "Colored Class Level", desc = "Color class levels in Party Finder.")
    @ConfigEditorBoolean
    @FeatureToggle
    public boolean coloredClassLevel = true;

    @Expose
    @ConfigOption(name = "Floor Stack Size", desc = "Display the party finder floor as the item stack size.")
    @ConfigEditorBoolean
    @FeatureToggle
    public boolean floorAsStackSize = true;

    @Expose
    @ConfigOption(name = "Mark Paid Carries", desc = "Highlight paid carries with a red background to make them easier to find/skip.")
    @ConfigEditorBoolean
    @FeatureToggle
    public boolean markPaidCarries = true;

    @Expose
    @ConfigOption(name = "Mark Perm/VC Parties", desc = "Highlight perm parties and parties that require a VC with a purple background to make them easier to find/skip.")
    @ConfigEditorBoolean
    @FeatureToggle
    public boolean markNonPugs = true;

    @Expose
    @ConfigOption(name = "Mark Low Levels", desc = "Highlight groups with players at or below the specified class level to make them easier to find/skip.")
    @ConfigEditorSlider(minValue = 0, maxValue = 50, minStep = 1)
    public int markBelowClassLevel = 0;

    @Expose
    @ConfigOption(name = "Mark Ineligible Groups", desc = "Highlight groups with requirements that you do not meet.")
    @ConfigEditorBoolean
    @FeatureToggle
    public boolean markIneligibleGroups = true;

    @Expose
    @ConfigOption(name = "Mark Missing Class", desc = "Highlight groups that don't currently have any members of your selected dungeon class.")
    @ConfigEditorBoolean
    @FeatureToggle
    public boolean markMissingClass = true;

    @Expose
    @ConfigOption(name = "Show Missing Classes", desc = "Show missing classes in a party in the tooltip.")
    @ConfigEditorBoolean
    @FeatureToggle
    public boolean showMissingClasses = true;
}