blob: 88253fb0a90437520e36d4d124c153b3da688d1d (
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 at.hannibal2.skyhanni.config.core.config.annotations.*;
import com.google.gson.annotations.Expose;
public class Summonings {
@Expose
@ConfigOption(name = "Summoning Soul Display", desc = "Show the name of dropped summoning souls laying on the ground. " +
"§cNot working in Dungeon 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 summoning mobs")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean summoningMobDisplay = false;
@Expose
@ConfigOption(name = "Summoning Mob Display Position", desc = "")
@ConfigEditorButton(runnableId = "summoningMobDisplay", buttonText = "Edit")
@ConfigAccordionId(id = 0)
public Position summoningMobDisplayPos = new Position(10, 10, false, true);
@Expose
@ConfigOption(name = "Summoning Mob Nametag", desc = "Hide the nametag of your spawned summoning mobs")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean summoningMobHideNametag = false;
@Expose
@ConfigOption(name = "Summoning Mob Color", desc = "Marks own summoning mobs green")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean summoningMobColored = false;
}
|