blob: f9c121fb7f0ab3f507efe75e63d5b60bfb569e52 (
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
|
package at.hannibal2.skyhanni.config.features;
import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.ConfigAccordionId;
import io.github.moulberry.moulconfig.annotations.ConfigEditorAccordion;
import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
import io.github.moulberry.moulconfig.annotations.ConfigOption;
public class Summonings {
@Expose
@ConfigOption(name = "Summoning Soul Display", desc = "Show the name of dropped summoning souls laying on the ground. " +
"§cNot working in dungeons if Skytils' 'Hide Non-Starred Mobs Nametags' feature is enabled!")
@ConfigEditorBoolean
public boolean summoningSoulDisplay = false;
@Expose
@ConfigOption(name = "Summoning Mob", desc = "")
@ConfigEditorAccordion(id = 0)
public boolean summoningMob = false;
@Expose
@ConfigOption(name = "Summoning Mob Display", desc = "Show the health of your spawned summons.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean summoningMobDisplay = false;
@Expose
public Position summoningMobDisplayPos = new Position(10, 10, false, true);
@Expose
@ConfigOption(name = "Summoning Mob Nametag", desc = "Hide the nametag of your spawned summons.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean summoningMobHideNametag = false;
@Expose
@ConfigOption(name = "Summoning Mob Color", desc = "Marks own summons green.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean summoningMobColored = false;
}
|