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 DungeonChestConfig { @Expose @ConfigOption(name = "Show Used Kismet", desc = "Add a visual highlight for used Kismet Feathers to the Croesus inventory.") @ConfigEditorBoolean @FeatureToggle public boolean showUsedKismets = true; @Expose @ConfigOption(name = "Kismet Amount", desc = "Show the amount of Kismet Feathers as stack size.") @ConfigEditorBoolean @FeatureToggle public boolean kismetStackSize = true; @Expose @ConfigOption(name = "Croesus Limit Warning", desc = "Give a warning when you are close to being past Croesus limit.") @ConfigEditorBoolean @FeatureToggle public boolean croesusLimit = true; }