blob: 41d5771ab475a613b2000140c455fb10e40c9886 (
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
|
package at.hannibal2.skyhanni.config.features.event;
import at.hannibal2.skyhanni.config.features.event.bingo.BingoConfig;
import at.hannibal2.skyhanni.config.features.event.carnival.CarnivalConfig;
import at.hannibal2.skyhanni.config.features.event.diana.DianaConfig;
import at.hannibal2.skyhanni.config.features.event.hoppity.HoppityEggsConfig;
import at.hannibal2.skyhanni.config.features.event.waypoints.LobbyWaypointsConfig;
import at.hannibal2.skyhanni.config.features.event.winter.WinterConfig;
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.ConfigOption;
public class EventConfig {
@Category(name = "Bingo", desc = "Monthly Bingo Event settings")
@Expose
public BingoConfig bingo = new BingoConfig();
@Category(name = "Diana", desc = "Diana's Mythological Burrows")
@Expose
public DianaConfig diana = new DianaConfig();
@Category(name = "Winter", desc = "Winter Season on Jerry's Island")
@Expose
public WinterConfig winter = new WinterConfig();
@Expose
@Category(name = "Hoppity Eggs", desc = "Features for the Hoppity event that happens every SkyBlock spring.")
public HoppityEggsConfig hoppityEggs = new HoppityEggsConfig();
@ConfigOption(name = "City Project", desc = "")
@Accordion
@Expose
public CityProjectConfig cityProject = new CityProjectConfig();
@ConfigOption(name = "Mayor Jerry's Jerrypocalypse", desc = "")
@Accordion
@Expose
public MayorJerryConfig jerry = new MayorJerryConfig();
@ConfigOption(name = "The Great Spook", desc = "")
@Accordion
@Expose
public GreatSpookConfig spook = new GreatSpookConfig();
@Expose
@Category(name = "The Carnival", desc = "Features for games at §eThe Carnival §7when §bFoxy §7is Mayor.")
public CarnivalConfig carnival = new CarnivalConfig();
// comment in if the event is needed again
// @ConfigOption(name = "300þ Anniversary Celebration", desc = "Features for the 300þ year of SkyBlock")
@Accordion
@Expose
public CenturyConfig century = new CenturyConfig();
@Category(name = "Lobby Waypoints", desc = "Lobby Event Waypoint settings")
@Expose
public LobbyWaypointsConfig lobbyWaypoints = new LobbyWaypointsConfig();
}
|